Font size
WorksheetsVisual Basic Programming
Total questions: 25
Worksheet time: 13mins
is a third-generation event-driven programming language from Microsoft known for its Component Object Model (COM) programming model first released in 1991 and declared legacy during 2008.
Java Programming
Visual Studio
Visual Basic
JavaScript
What does "GUI" mean?
Graphical User Interface
Gradient Uninterrupted Interface
Gradual Unified Interface
Graphical Unified Interface
It is the standard control for accepting input from the user as well as to display the output.
Label
Button
Textbox
Picture Box
A control that lets you place descriptive text , where the text does not need to be changed by the user.
Textbox
Date Time Picker
List Box
Label
is one of the most important controls as it is used to execute commands.
Command Button
CheckBox
Label
Textbox
It is one of the controls that is used to handle graphics.
Image Source
Link Label
Picture Box
GUI
Presents a list of items where the user can click and select the items from the list.
CheckBox
ListBox
TextBox
LinkBox
It is used to display a drop-down list of various items.
ListBox
CheckBox
TextBox
ComboBox
Lets the user selects or unselects an option.
CheckBox
RadioButton
ListBox
ComboBox
When an option box is selected, its value is set to “______” and when it is unselected; its value is set to “_______”.
True and False
Yes and No
I / O
Check and X
It is a type of graphical user interface element that allows the user to choose only one of a predefined set of options.
Command Button
Radio Button
CheckBox
ComboBox
It refers to an extensive system used for declaring variables or functions of different types.
Controls
Object
Data Types
Variables
It is useful to declare and allocate the storage space for one or more variables.
Dim
Var
Int
String
A binary variable, having two possible values called “true” and “false.”.
String
Integer
Float
Boolean
It is a primitive data type with the size of exactly one byte.
String
Char
Double
Short
It is a datum of integral data type, a data type that represents some range of mathematical integers.
Double
Float
Short
Integer
It is a data type in computer science whose range is greater (sometimes even double) than that of the standard data type integer.
Long
Short
Integer
Double
It is traditionally a sequence of characters, either as a literal constant or as some kind of variable.
Integer
Float
Dim
String
What is the proper syntax used in VB?
Dim Integer x = 5
Dim String as Name
Dim age as Integer
Dim String = name
Check which syntax is correct in declaring a variable.
Dim age = 5 as Integer
Dim fname as String
Dim platenum as Integer
Dim lastname as Reyes
Check which syntax is correct in declaring a variable.
Dim grade as Integer = 85
Dim math = 76
Dim String = MiddleInitial
Dim lastname as String = "REYES"
It allows you to define the data type in the declaration statement.
While
Else
As
If
These are the predefined set of reserved words that have special meaning for the compiler.
Keyword
Keyphrase
Keycode
Keypass
These are the self-explanatory notes to provide detailed information about the code which we wrote in our applications.
Comment
Dictation
Input
Output
It is a programming element that specifies what kind of operation needs to perform on operands or variables.
Variables
Declarations
Operator
Decision
