Simple Quiz App

1. Which Language runs in a web Browser?

C
C++
Python
JavaScript

2. We can use JavaScript inside an HTML file?

True
False

3. How do you write "Hello World" in an alert box?

alert("Hello World")
alertBox("Hello World")
msg("Hello World")
msgBox("Hello World")

4. How do you create a function in JavaScript?

function = myFunction()
function myFunction()
function:myFunction()
function => function()

5. How do you call a function named "myFunction"?

call function myFunction()
call myFunction()
myFunction()
myFunction

6. How to write an IF statement in JavaScript?

if(i==5)
if i == 5 then
if i = 5
if i = 5 then

7. How to write an IF statement for executing some code if "i" is NOT equal to 5?

if(<>)
if i <> 5 then
if i != 5 then
if(i !=5)