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. <code>
B. <javascript>
C. <js>
D. <script>

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

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

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

A. The <body> section
B. The <head> 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. .html
B. .script
C. .java
D. .js

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

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

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

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

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

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

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

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

11 What does the confirm() method return?

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

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. break
B. return
C. stop
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. foreach
D. do...while

16 How do you write an IF statement in JavaScript?

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

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

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

24 Inside which HTML element do we put the JavaScript?

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

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

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

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

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

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

A. for (i = 0; i <= 5)
B. for (i <= 5; i++)
C. for i = 1 to 5
D. for (i = 0; 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. Error
B. 5
C. 15
D. 10

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

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

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

A. The variable name
B. The global object
C. The function itself
D. The owner 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 is undefined)
C. if (car == null)
D. if (typeof car == 'undefined')

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

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

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 creates a new variable
D. It overwrites the previous value

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

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

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

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

40 Which is the ternary operator?

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

41 What keyword defines a switch case block?

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

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

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

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

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

44 What is Hoisting in JavaScript?

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

45 Which of the following is a valid const declaration?

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

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

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

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. NaN
B. undefined
C. false
D. true

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

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

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

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