You need to enable JavaScript to run this app.
Quick Quiz
Home
Blog
Statistics
Q: What is Javascript (Just google: wikipedia javascript and read first four paragraphs)
Options:
High-level, often just-in-time compiled, and multi-paradigm programming language
Dynamic typing, prototype-based object-orientation programming language
A multi-paradigm language that supports event-driven, functional, and imperative programming styles
All the above
Q: Which one is not a type of variable?
Options:
boolean
bulbuli
number
string
Q: Which method is used to convert a string to an integer?
Options:
parseFloat()
parseString()
parseNumber()
parseInt()
Q: Which company developed JavaScript? (feel free to google it)
Options:
Netscape
Google
Facebook
Firefox
Q: Which one is not a mathematical operator in JS?
Options:
/
%
*
\
Q: What does it mean by writing two plus signs after a number type variable?
Options:
Set the value to 0
Increase the value by 1
Decrease the value by 1
White plus toothpaste
Q: If you have a var age = 21; and then you write age += 8; now what will be the value of the variable age?
Options:
21
8
218
29
Q: Which one is an acceptable variable name?
Options:
mobile-price
1bookName
user9
“temperature”
Q: What will be the output of the code: console.log(17%5)
Options:
7
2
5
3