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()
Explanation:
.
3) In VBA, How many types of access specifiers available in VBA?
Correct Answer: 4
Explanation:
Visual Basic (VB) Access Modifiers (Public, Private, Protected, Friend) In visual basic, Access Modifiers are the keywords and those are useful to define an accessibility level for all the types and type members.
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