Unit 4 - Practice Quiz

CSE326 50 Questions
0 Correct 0 Wrong 50 Left
0/50

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

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

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

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

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

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

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

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

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

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

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

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

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

A. Block scope
B. Module scope
C. Function scope
D. Global 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. Error
D. NaN

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

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

11 What does the confirm() method return?

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

12 How does a 'while' loop start?

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

13 Which statement is used to stop a loop completely?

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

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

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

15 Which loop is guaranteed to execute at least once?

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

16 How do you write an IF statement in JavaScript?

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

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

A. if i =! 5 then
B. if (i <> 5)
C. if i not 5
D. if (i != 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 file='app.js'>
D. <script src='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. string
B. dim
C. int
D. var

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

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

24 Inside which HTML element do we put the JavaScript?

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

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

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

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

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

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

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

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. 10
B. 5
C. Error
D. 15

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

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

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

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

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 (typeof car == 'undefined')
D. if (car is undefined)

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

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

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

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

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

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

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

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

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

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

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. clear object.property
B. remove object.property
C. delete object.property
D. object.property = null

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

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

44 What is Hoisting in JavaScript?

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

45 Which of the following is a valid const declaration?

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

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

A. for...in
B. do...while
C. for
D. 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. undefined
B. true
C. NaN
D. false

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. window
B. html
C. document
D. console