What is the benefit of using const over var in JavaScript?
A). const variables have function scope
B). const variables are hoisted to the top
C). const variables prevent accidental reassignments
D). const variables can be used anywhere
What will be the output of the code above?
A). 10
B). 20
C). Error
D). Undefined
What happens if you try to reassign a value to a constant declared using const?
A). SyntaxError
B). TypeError
C). ReferenceError
D). No error, value is reassigned
In JavaScript, const variables are not hoiste What does this mean?
A). They are hoisted to the top of the block
B). They cannot be used before declaration
C). They are accessible in nested scopes
D). They are block-scoped variables
Which of the following statements about const is true?
A). Variables declared with const can be reassigned
B). const variables have function scope
C). const variables cannot be used in loops
D). const variables are block-scoped
What will be the output of the code above?
A). 30
B). 31
C). Error
D). Undefined
What happens if you try to declare a const variable without initializing it immediately?
A). SyntaxError
B). ReferenceError
C). TypeError
D). No error, the variable remains undefined
What is the primary distinction between const and let in JavaScript?
A). const variables are immutable
B). let variables are block-scoped
C). const variables have function scope
D). let variables can be reassigned
Which of the following is NOT an example of a block in JavaScript?
A). Function body
B). if statement body
C). while loop body
D). Object literal
How can you declare a constant named PI with a value of 3.14 in JavaScript using const?
A). const PI = 3.14;
B). PI = 3.14;
C). let PI = 3.14;
D). var PI = 3.14;