Unit 4 - Practice Quiz

CSE326

1 Which HTML tag is used to embed JavaScript code inside a webpage?

A. <js>
B. <script>
C. <javascript>
D. <code>

2 Which attribute of the <script> tag is used to include an external JavaScript file?

A. href
B. link
C. src
D. rel

3 Where is the correct place to insert a JavaScript in an HTML document?

A. The <head> section
B. The <body> section
C. Both the <head> section and the <body> section
D. The <footer> section

4 What is the correct file extension for an external JavaScript file?

A. .java
B. .js
C. .script
D. .html

5 How do you write 'Hello World' in an alert box?

A. msg('Hello World');
B. msgBox('Hello World');
C. alertBox('Hello World');
D. alert('Hello World');

6 Which keyword is used to declare a variable that cannot be reassigned?

A. var
B. let
C. const
D. static

7 What is the scope of a variable declared with 'let' inside a block?

A. Global scope
B. Function scope
C. Block scope
D. Module scope

8 Which operator is used to check both value and type equality?

A. ==
B. =
C. ===
D. !=

9 What is the result of the expression: '5' + 3?

A. 8
B. 53
C. NaN
D. Error

10 Which function is used to get input from the user?

A. alert()
B. prompt()
C. confirm()
D. input()

11 What does the confirm() method return?

A. String
B. Integer
C. Boolean
D. Object

12 How does a 'while' loop start?

A. while (i <= 10)
B. while i = 1 to 10
C. while (i <= 10; i++)
D. until (i <= 10)

13 Which statement is used to stop a loop completely?

A. stop
B. return
C. break
D. continue

14 What is the purpose of the 'continue' statement?

A. Stops the loop execution
B. Restarts the loop
C. Skips the current iteration
D. Exits the function

15 Which loop is guaranteed to execute at least once?

A. for
B. while
C. do...while
D. foreach

16 How do you write an IF statement in JavaScript?

A. if i = 5
B. if i == 5 then
C. if (i == 5)
D. if i = 5 then

17 How do you write an IF statement for executing some code if 'i' is NOT equal to 5?

A. if (i <> 5)
B. if i =! 5 then
C. if (i != 5)
D. if i not 5

18 Which symbol is used for single-line comments in JavaScript?

A. <!-- -->
B. //
C. / /
D. **

19 What is the correct syntax for referring to an external script called 'app.js'?

A. <script name='app.js'>
B. <script href='app.js'>
C. <script src='app.js'>
D. <script file='app.js'>

20 How do you create a JavaScript object?

A. var obj = [];
B. var obj = {};
C. var obj = ();
D. var obj = <>;

21 Given: var person = {firstName:'John', lastName:'Doe'}; How do you access the lastName?

A. person.lastName
B. person[lastName]
C. person->lastName
D. person::lastName

22 Which keyword is used to define a variable in JavaScript (ES5 legacy)?

A. dim
B. var
C. int
D. string

23 What is the correct way to write a JavaScript array?

A. var colors = (1:'red', 2:'green', 3:'blue')
B. var colors = ['red', 'green', 'blue']
C. var colors = 'red', 'green', 'blue'
D. var colors = 1 = ('red'), 2 = ('green'), 3 = ('blue')

24 Inside which HTML element do we put the JavaScript?

A. <javascript>
B. <js>
C. <scripting>
D. <script>

25 What will be the output of: typeof 'Hello'?

A. text
B. String
C. string
D. object

26 Which statement serves as the fall-back in a 'switch' statement?

A. else
B. default
C. break
D. case

27 What is the correct syntax for a 'for' loop?

A. for (i = 0; i <= 5)
B. for (i = 0; i <= 5; i++)
C. for i = 1 to 5
D. for (i <= 5; i++)

28 How can you add a comment that has more than one line?

A. // This is a comment //
B. <!-- This is a comment -->
C. / This is a comment /
D. This is a comment

29 Which operator is used to assign a value to a variable?

A. *
B. -
C. =
D. ==

30 What is the value of 'x' after: var x = 10; x += 5;

A. 5
B. 10
C. 15
D. Error

31 Which keyword identifies a block of code to be executed if a specified condition is false?

A. else
B. stop
C. break
D. then

32 In an object method, what does 'this' refer to?

A. The global object
B. The function itself
C. The owner object
D. The variable name

33 Which logical operator represents 'OR'?

A. &&
B. ||
C. !
D. &

34 What is the correct way to check if a variable 'car' is undefined?

A. if (car === undefined)
B. if (car == null)
C. if (car is undefined)
D. if (typeof car == 'undefined')

35 Which of the following is NOT a valid JavaScript variable name?

A. _myVar
B. $myVar
C. 2myVar
D. myVar2

36 What syntax is used to access a method 'start' of an object 'engine'?

A. engine['start']
B. engine.start()
C. call engine.start
D. engine->start()

37 What happens if you redeclare a variable using 'let' in the same scope?

A. It overwrites the previous value
B. It causes a SyntaxError
C. It creates a new variable
D. Nothing happens

38 Which property is used to find the length of a string?

A. size
B. len
C. length
D. count

39 What is the output of Boolean(10 > 9)?

A. true
B. false
C. NaN
D. undefined

40 Which is the ternary operator?

A. ?:
B. ??
C. ||
D. &&

41 What keyword defines a switch case block?

A. option
B. case
C. when
D. if

42 How do you delete a property from a JavaScript object?

A. remove object.property
B. delete object.property
C. object.property = null
D. clear object.property

43 Which popup box returns null if the user clicks 'Cancel'?

A. alert
B. confirm
C. prompt
D. message

44 What is Hoisting in JavaScript?

A. Moving declarations to the top
B. Moving initializations to the top
C. Deleting unused variables
D. Looping efficiently

45 Which of the following is a valid const declaration?

A. const PI;
B. const PI = 3.14;
C. const PI = 3.14; PI = 3.14159;
D. const 3.14 = PI;

46 What loop is best suited for iterating over the properties of an object?

A. for
B. while
C. for...in
D. do...while

47 Which symbol is used for the modulus (remainder) operator?

A. /
B. %
C. *
D. &

48 If x = 10 and y = '10', what is the result of x == y?

A. true
B. false
C. undefined
D. NaN

49 If x = 10 and y = '10', what is the result of x === y?

A. true
B. false
C. undefined
D. NaN

50 Which global object do alert(), confirm(), and prompt() belong to?

A. document
B. console
C. window
D. html