Contents

Which of the following variable string assignment is not valid?
a) name= “ITSERIES”;    
b) name=”IT” +” SERIES”;
c) name=’ITSERIES’;       
d) name=” ITSERIES”;

d

The statement var xyz = 10; cause the type of variable xyz…….
a) string                                 
b) numeric
c) integer                               
d) real

b

In statement var xyz=”Pakistan”; the type of variable xyz is interpreted as…….
a) numeric                            
b) character
c) string                                
d) Boolean

c

Which of the following are not valid types of expressions in JavaScript?
a) arithmetic expressions                  
b) string expressions
c) logical expressions
d) null expressions

d

In 5+3, the symbol + is called……..
a) expression                       
b) operator
c) assignment                      
d) argument

b

What is needed in an expression to relate values together in JavaScript?
a) operator                          
b) conjunctive
c) function                           
d) action

a