You are on page 1of 1

ICT 9 Reviewer

1. The symbol that tells the compiler to perform the specific logical or mathematical operation on the data
values.
2. It causes a message to be displayed on the screen
3. A line of code that reads an input from the user.
4. A procedure created as a member of a class and they cause an object to do something.
5. It is a Visual Basic Object that can be moved, resized or customized by setting their properties.
6. This happens when an object does something.
7. The container for all the controls that make up the user interface in VB.Net
8. These are the pillars that help in creating a GUI Applications in VB.Net quickly and easily.
9. Properties can be set at design time and at Properties window.
10. An event is a characteristic held by a Visual basic object, such as Caption or Fore Color.
11. It is a control that lets the user select or deselect alternatives from the list of choices
12. It represents a standard Windows label.
13. RadioButton allows users to select multiple options simultaneously.
14. Checkbox
15. A graphical user interface element that allows users to select one option from a list of mutually
exclusive options.
16. What best describes the condition in an if-then statement?
17. What happens if the condition in an if-then statement is false?
18. A statement allows a variable to be tested for equality against a list of values.
19. When might you use a nested Select Case statement?
20. The statements that controls the execution of the program based on the specified condition.
21. if, if-else, Select Case, nested case
22. A statement where it compares a value against a set of constants.
23. Create a program below will display “num1 is positive” if the value of num1 is positive otherwise
“num1 is negative”. (more if-else coding)
24. It repeats the enclosed block of statements while a Boolean condition is True.
25. It repeats the enclosed block of statements until a Boolean condition is True.
26. It repeats a group of statements a specified number of times and a loop index counts the number of
loop iterations as the loop executes.
27. This structure is used when you want to repeat a set of statements a set number of times.
28. It repeats a group of statements for each element in a collection.
29. A statement that is used to terminate or exit a loop and pass control to the next statement.

30. What is the output of the program?


Dim I As Integer
For I = 0 To 10
MsgBox(“Hello”)
Next

31. What is the output of the program?


Do While i <= 10
MsgBox(i)
Loop
32. What is the output of the program?
Do While i <= 5
i=i+1
MsgBox(i)
Loop

33. Arrays, One-dimensional array coding, two-dimensional array coding, default values of Arrays.

You might also like