Programming With Vba Set 13


Which VBA code is used to remove the user form from memory?
  
    (A) Unload me
    (B) Userform1.hide
    (C) Unload userform1
    (D) User form show false

Unload userform1

Which window displays the watched expression including the one just added?
  
    (A) Module window
    (B) Immediate window
    (C) Watch window
    (D) Debug window

Watch window

Which one is indicated by a red dot with a line of code highlighted in red in VBA?
  
    (A) Break point
    (B) Start point
    (C) End point
    (D) Error point

Break point

Which is used to repeats the same steps in case of frequency needed actions in VBA?
  

    (A) Class
    (B) Object
    (C) Functions
    (D) Macros

Macros

Which function returns the integer portion of a number in VBA?
  
    (A) Int()
    (B) Format()
    (C) Abs()
    (D) Sign()

Int()