What will be the output of the following code: console.log(typeof 'Hello');?
A). string
B). number
C). undefined
D). boolean
What will be the output of the following code: console.log('Hello ' + 'World');?
A). Hello World
B). Hello + World
C). Hello +World
D). HelloWorld
What will be the output of the following code: console.log(parseInt('10.5'));?
A). 10
B). 5
C). '10.5'
D). NaN (Not a Number)
What happens if you declare a variable without initializing it in JavaScript?
A). It will throw a syntax error
B). It will assign the variable a value of undefined
C). It will automatically assign a value to the variable
D). It will assign the variable a value of null
Which keyword is used to declare a constant variable in JavaScript?
A). const
B). let
C). var
D). constant
Which variable declaration is appropriate if you want a variable to hold a constant value throughout the program execution?
A). let
B). var
C). const
D). constant
Which statement correctly assigns the value true to a boolean variable isLogged in JavaScript?
A). let isLogged = 'true';
B). let isLogged = true;
C). let isLogged = 1;
D). let isLogged = 0;
What will be the value of x after the following code executes: let x = '5' + 5;?
A). '55'
B). 10
C). 5
D). '10'
What is the scope of a variable declared using the let keyword in JavaScript?
A). Block scope
B). Function scope
C). Global scope
D). Local scope
Which method is used to convert a string to a number in JavaScript?
A). toString()
B). parseInt()
C). parseFloat()
D). toNumber()