Which of the following statements about const is true?
A). A. Variables declared with const can be reassigned
B). B. const variables have function scope
C). C. const variables cannot be used in loops
D). D. const variables are block-scoped
Which of the following is NOT an example of a block in JavaScript?
A). A. Function body
B). B. if statement body
C). C. while loop body
D). D. Object literal
What will be logged to the console after 1 second?
A). A. 0 1 2
B). B. 3 3 3
C). C. 0 0 0
D). D. Error
Which statement is true regarding the const keyword in JavaScript?
A). A. Constants declared with const are hoisted
B). B. Constants declared with const can be reassigned
C). C. Constants declared with const have global scope
D). D. Constants declared with const are immutable
Which keyword is used to declare block-scoped variables in JavaScript?
A). A. var
B). B. let
C). C. const
D). D. block
What is the purpose of using the const keyword in JavaScript?
A). A. To declare variables with global scope
B). B. To declare block-scoped variables
C). C. To declare variables that can be reassigned
D). D. To declare variables that cannot be reassigned
What happens if you try to reassign a value to a constant declared using const?
A). A. SyntaxError
B). B. TypeError
C). C. ReferenceError
D). D. No error, value is reassigned
What is the primary difference between const and let in JavaScript?
A). A. const variables can be reassigned
B). B. let variables are block-scoped
C). C. const variables are hoisted
D). D. let variables are immutable
Which of the following statements is true about block scope in JavaScript?
A). A. Variables declared with let have global scope
B). B. Variables declared with let have function scope
C). C. Variables declared with let are block-scoped
D). D. Variables declared with let are hoisted
How can you declare a constant named PI with a value of 3.14 in JavaScript using const?
A). A. const PI = 3.14;
B). B. PI = 3.14;
C). C. let PI = 3.14;
D). D. var PI = 3.14;