Programming With Vba Set 11


Which shortcut key is used to open the Visual Basic Editor In VBA?
  
    (A) Alt + F11
    (B) Ctrl + F11
    (C) Shift + F11
    (D) Shift + Ctrl + F11

Alt + F11

Which simplifies the work to be eliminating or rewriting the code in VBA?
  
    (A) Class
    (B) Object
    (C) Macros
    (D) Functions

Macros

Which type of variable can be accessed or used by subroutines outside the modules in VBA?
  
    (A) Static
    (B) Private
    (C) Protect
    (D) Public

Public

Where there is no difference between dim and private in VBA?
  

    (A) Local scope
    (B) Module scope
    (C) Global scope
    (D) Project scope

Module scope

Which method is used to pass the reference to the arguments?
  
    (A) Ref
    (B) Val
    (C) Reference
    (D) By Ref

By Ref