Q
Can a global variable be accessed inside a function?

Answer & Solution

Answer: Option A
Solution:
Global variables are accessible from anywhere in the code, including inside functions.
Related Questions on Average

What will be the output of console.log(window.myVar); if var myVar = 'Hello'; is declared outside any function?

A). Hello

B). undefined

C). error

D). null

Can global variables lead to name collisions in large codebases?

A). Yes

B). No

C). Only if not managed properly

D). Only in strict mode

What keyword is used to ensure a variable is block-scoped?

A). var

B). global

C). let

D). window

How can you avoid global scope pollution?

A). By using local variables

B). By using IIFE (Immediately Invoked Function Expressions)

C). By using modules

D). All of the above

Which statement is true about global variables in JavaScript?

A). They are not accessible inside functions

B). They can be accessed and modified from any part of the code

C). They are constants

D). They can only be read, not modified

How do you declare a global variable inside a function?

A). Using var

B). Using let

C). Using const

D). Assigning to window

What happens if you declare a variable inside a function with the same name as a global variable?

A). It creates a new local variable

B). It throws an error

C). It modifies the global variable

D). It assigns the global variable to null

How can you access a global variable inside a function if it has the same name as a local variable?

A). By using the window object

B). By using the global object

C). By using a different name for the global variable

D). By using the this keyword

What is the output of console.log(window.globalLet); if let globalLet = 'Hello'; is declared in the global scope?

A). Hello

B). undefined

C). error

D). null

What is the output of console.log(globalVar); if globalVar = 'Hello'; is assigned inside a function without using var, let, or const?

A). Hello

B). undefined

C). error

D). null