The Basics
VB Components
Data Types/Variables
List/Combo Box Commands
Selection/Looping Statements
100

What is the flowchart symbol that represents Process? Draw it.

Rectangle

100

What Visual Basic Control structure that is used to get input from the user or to display text?

Text box

100

It specifies the type of data that a variable can store.

Data Type

100

What is the correct format of the Add() method in List Box?

ListBox.Items.Add(“Text”)

100

This is the simplest control structure which instructs the computer to perform a certain action specified by the VB expression if the condition is true.

If Then Statement

200

It is a kind of structured English in describing algorithms.

Pseudocode

200

What Visual Basic Control structure that    is used to identify the contents of a textbox?

Label

200

Examples of this kind of variable are Long, Integer, Short, Byte.

Integer Variables

200

What is the correct format of the  Remove () method in List Box?

ListBox.Items.Remove(“Text”)

200

This control structure will ask the computer to perform a certain action specified by the Visual Basic 2013 expression if the condition is met. And when the condition is false, an alternative action will be executed.

If Then Else Statement

300

What is the flowchart symbol for Input/Output? Draw it.

Parallelogram

300

What Visual Basic Control structure that   is used to display several pieces of output?

List box

300

Examples of this kind of variable are Single and Double.

Floating-point Variables

300

What is the correct format for Clear() method in List Box?

ListBox.Items.Clear()

300

This control structure provides more choices than If Then Else Statement.

If Then Else If Statement

400

What is the shortcut key to run or play the Visual Basic application?

F5

400

What is the meaning of Dim?

Dimension

400

Examples of this kind of variable is String

Text Variables

400

What is the correct format of  Add() method in Combo Box?

ComboBox.Items.Add(“Text”)

400

This control structure only make a decision on one expression or dimension.

Switch Case Statement

500

It is a procedure or formula for solving a problem based on conducting a sequence of specified actions.

Algorithm

500

What is the acronym of BASIC?

Beginner’s All-purpose Symbolic Instruction Code

500

It is a statement that creates a variable in memory.

Variable declaration

500

What is the correct format of Clear() method in Combo Box?

ComboBox.Items.Clear()

500

It is procedure in a computer program that runs repeatedly until meeting the certain condition.

Looping