Visual Basic (VB) | Set 1
1. ____ icon is not available on a toolbox.
2. Remark statement starts with _____
3. Object name can be maximum of _____ characters.
4. Prefix used for a Check box is _____
5. Prefix used for a Command Button is _____
6. Prefix used for a Form is _____
7. Prefix used for a Frame is _____
8. Prefix used for a Text Box is _____
9. Which of the following is not a valid property of a Form?
10. Which of the following is not a valid property of a Label?
11. Which of the following is not a valid property of a Text Box?
12. of the following is not a valid property of a Command Button?
13. Which of the following is not a valid property of a Check Box?
14. Which of the following is not a valid property of an Option Button?
15. Which of the following is not a valid property of a Command Button?
16. If ______ property of a Command button is set to True then by pressing ‘Esc’ key from
the keyboard the Command get selected automatically
17. If ______ property of a Command button is set to True then by pressing ‘Enter’ key from
the keyboard the Command get selected automatically
18. ______ property determines whether the focus stops on a control when a Tab key is
pressed.
19. ______ property determines the order of the focus to move as the Tab key is pressed.
20. To define access key, ___ symbol is used before the character you want as access key
while setting caption property of a Command Button.
21. Which arithmetic operator is used for integer division.
22. Which arithmetic operator is used for exponentiation.
23. What is the result of VAL(“1,234”)?
24. What is the result of VAL(“1234”)?
25. What is the result of VAL(“A123”)?
26. What is the result of VAL(“15/08/2020”)?
27. Which of the following is an invalid Data Type in VB?
29. Which of the following is not a valid logical operator in VB.
30. ______ control can be used to accept input from the user.
31. Which of the following is a non-executable statement in VB?
32. The constant which are readymade in VB are called as _______ constant.
33. The constant which are defined by user is known as _____ constant.
34. Which of the following function is invalid in VB?
35. ____ function is used to convert a text value to a numeric value.
36. Option buttons are also called as _______ buttons.
37. _____ can be used in an application to give user True/False or Yes/No Option
38. _____ allows the user to select any number of options at a time from a group.
39. _____ is used to display headings and messages.
40. _______ property of a Text Box is True then user cannot type anything in a Text Box.
41. _______ statement cannot be used to create a loop.
42. For I = 10 To 20 …. Next I, will execute a loop _____ time/s.
43. For I = 1 To 20 Step 2…. Next I, will execute a loop _____ time/s.
44. For I = 10 To 1…. Next I, will execute a loop _____ time/s.
45. For I = 10 To 1 Step -1…. Next I, will execute a loop _____ time/s.