Programming With Vba Set 17


Which shortcut key allows debugger to run the current procedure and go line after line called the procedure in VBA?
  
    (A) Ctrl + Shift + F6
    (B) Ctrl + Shift + F7
    (C) Ctrl + Shift + F8
    (D) Ctrl + Shift + F9

Ctrl + Shift + F8

While debugging code, which statement allows to go to the highlighted line?
  
    (A) Step into
    (B) Step over
    (C) Step out
    (D) Show next

Show next

Which control is used to increase or decrease a value, such as a number time or date?
  
    (A) Scroll Bar
    (B) Spin Button
    (C) Combo Box
    (D) Toggle Button

Spin Button

Which VBA function compares given strings and returns -1 if the first string is smaller than the second string, returns 0 if both are equal and 1 if the first string is greater than second string?
  

    (A) Strcmp
    (B) Strcomp
    (C) Compare
    (D) Scmp

Strcmp

Which scope does the variable declared with dim and remains in the existance only as long as the procedure in which if is declared is running?
  
    (A) Global scope
    (B) Local scope
    (C) Module scope
    (D) Project scope

Local scope