
JavaScript Quiz
Correct: 0
Wrong: 0
Question No. 1 : <p>What is Javascript (Just google: wikipedia javascript and read first four paragraphs)</p>
Correct Answer : All the above
Question No. 2 : <p>Which one is not a type of variable?</p>
Correct Answer : bulbuli
Question No. 3 : <p>Which method is used to convert a string to an integer?</p>
Correct Answer : parseInt()
Question No. 4 : <p>Which company developed JavaScript? (feel free to google it)</p>
Correct Answer : Netscape
Question No. 5 : <p>Which one is not a mathematical operator in JS?</p>
Correct Answer : \
Question No. 6 : <p>What does it mean by writing two plus signs after a number type variable?</p>
Correct Answer : Increase the value by 1
Question No. 7 : <p>If you have a var age = 21; and then you write age += 8; now what will be the value of the variable age?</p>
Correct Answer : 29
Question No. 8 : <p>Which one is an acceptable variable name?</p>
Correct Answer : user9
Question No. 9 : <p>What will be the output of the code: console.log(17%5)</p>
Correct Answer : 2