Basic And Variables - Study Mode

[#31] Initialization of variable can be done by writing _____ operator in between variable name and operand value.
Correct Answer

(B) =

[#32] Multiple Declarations of variables are separated by ___________ symbol.
Correct Answer

(A) Comma

[#33] JavaScript Code can be called by using
Correct Answer

(D) Function/Method
(H) Function/Method

Explanation

Solution: JavaScript code is as easy to be implemented and run. It can be called by using a function or a method)

[#34] The type of a variable that is volatile is
Correct Answer

(B) Mutable variable

Explanation

Solution: The variables whose values can be changed are called mutable variable types.

[#35] A hexadecimal literal begins with
Correct Answer

(D) Both 0x and 0X

Explanation

Solution: Generally, X or x denotes hexadecimal values. So, any integer literal that begins with 0X or 0x denotes a hexadecimal number.