Contents

Unintentional errors in application by declaring variables can be reduced by…
a) Giving them Small names
b) Declaring them with a small sized data type
c) Giving them 
minimum scope possible
d) Making them class variables

c

To declare a class-level named constant you declare it as………
a) Public                                               
b) Dynamic
c) Private                             
d) Static

c

In Visual Basic, if you keep a variable undeclared, it is automatically taken as………data type.
a) Int                                     
b) Char
c) String                                
d) Object

d

……prevents you from using undeclared variable in your code.
a) Option Explicit On       
b) Option Implicit On
c) Explicit Off                      
d) Implicit Off

a

………ensures every variable and named constant is declared with a data type.
a) Option Infer Off
b) Option Infer On
c) Option On                        
d) Option off

a

………is used to fit the value of the data type to that of the memory location, implicitly.
a) Implicit type conversion
b) Explicit type conversion
c) Convert method
d) Conversion function

a