What is the flowchart symbol that represents Process? Draw it.
Rectangle
What Visual Basic Control structure that is used to get input from the user or to display text?
Text box
It specifies the type of data that a variable can store.
Data Type
What is the correct format of the Add() method in List Box?
ListBox.Items.Add(“Text”)
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
It is a kind of structured English in describing algorithms.
Pseudocode
What Visual Basic Control structure that is used to identify the contents of a textbox?
Label
Examples of this kind of variable are Long, Integer, Short, Byte.
Integer Variables
What is the correct format of the Remove () method in List Box?
ListBox.Items.Remove(“Text”)
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
What is the flowchart symbol for Input/Output? Draw it.
Parallelogram
What Visual Basic Control structure that is used to display several pieces of output?
List box
Examples of this kind of variable are Single and Double.
Floating-point Variables
What is the correct format for Clear() method in List Box?
ListBox.Items.Clear()
This control structure provides more choices than If Then Else Statement.
If Then Else If Statement
What is the shortcut key to run or play the Visual Basic application?
F5
What is the meaning of Dim?
Dimension
Examples of this kind of variable is String
Text Variables
What is the correct format of Add() method in Combo Box?
ComboBox.Items.Add(“Text”)
This control structure only make a decision on one expression or dimension.
Switch Case Statement
It is a procedure or formula for solving a problem based on conducting a sequence of specified actions.
Algorithm
What is the acronym of BASIC?
Beginner’s All-purpose Symbolic Instruction Code
It is a statement that creates a variable in memory.
Variable declaration
What is the correct format of Clear() method in Combo Box?
ComboBox.Items.Clear()
It is procedure in a computer program that runs repeatedly until meeting the certain condition.
Looping