PROGRAMMING WITH VBA - Practice Mode

1) Which VBA built in function returns location at the second string occurs within the first string?
Correct Answer: Instr()
2) Which keyword is used to declare the variables in project scope
Correct Answer: Public
3) In VBA, How many types of access specifiers available in VBA?
Correct Answer: 4
4) Which type of variable cannot be declared within a procedure in VBA?
Correct Answer: Module scope
5) Which variable recognized only within the procedure in which it is declared?
Correct Answer: Local scope