JavaScript MCQ : JS Basics (Multiple Choice Questions)
Question 1 |
In order to Hide JS to be shown as its page content ,which Comment is Used ?
<!-- ---------------- ---------------- //--> | |
/* ------ ------ */ | |
<!-- ---------------- ---------------- --> | |
// -----------------
|
Question 2 |
All modern browsers supports JS.
False | |
True |
Question 3 |
We use _______ style comment to prevent showing Java Script as Content in the old browsers.
CSS | |
JS | |
C | |
HTML |
Question 4 |
<html> <body> <script type="text/javascript"> <!-- document.print("Hello"); //--> </script> </body> </html>What will be the Output of the above Code ?
Hello | |
Will Throw Error | |
None of These | |
Will not print anything because of Comment. |
Question 4 Explanation:
Comment is used to prevent showing JS as page content in Old browsers.
Question 5 |
Which was the first browser to support JavaScript ?
IE | |
Google Chrome | |
Mozilla Firefox | |
Netscape |
There are 5 questions to complete.