How does block scope help prevent variable hoisting issues?
A). By moving variables to the top of the code
B). By restricting variables to their block
C). By making variables accessible globally
D). By assigning default values to variables
How does block scope affect the visibility of variables in nested blocks?
A). Variables are only visible within their immediate block
B). Variables are visible within all nested blocks
C). Variables are only visible within functions
D). Variables are globally visible
Which of the following correctly defines a block scope?
A). A scope that encompasses the entire codebase
B). A scope that encompasses a function
C). A scope that encompasses a block of code delimited by curly braces
D). A scope that encompasses an object
What is the main difference between var and let in terms of scope?
A). var is block-scoped, let is function-scoped
B). var is function-scoped, let is block-scoped
C). Both var and let are block-scoped
D). Both var and let are function-scoped
What happens when you declare a constant with const inside a block and try to reassign it?
A). It throws an error
B). It allows reassignment
C). It assigns the value globally
D). It assigns a default value
What is the output of console.log(innerVar); outside exampleFunction if let innerVar = 'Hello'; is declared inside exampleFunction?
A). Hello
B). undefined
C). Error
D). null
What is the output of console.log(blockVar); outside a block if let blockVar = 'Block'; is declared inside a block?
A). Block
B). undefined
C). Error
D). null
What does the Temporal Dead Zone (TDZ) refer to?
A). A zone with no variables
B). A zone where variables are in memory but not accessible
C). A zone where variables are accessible globally
D). A zone with limited variable scope
What is the output of console.log(i); outside the loop if let i = 10; is declared inside a loop?
A). 10
B). undefined
C). Error
D). 0
What is the benefit of block scope in loops?
A). It allows variables to be reassigned within each iteration
B). It prevents variable hoisting
C). It restricts variables to the loop block
D). It makes variables globally accessible