Font size
WorksheetsPF 101 - Activity 5 (OO Design and Principles
Total questions: 55
Worksheet time: 28mins
A ________ is blue print that defines certain characteristics and behavior. It is simply a representation of different types of objects.
Class
Object
Attribute
Characteristics
Visual Basic Studios is an example of _______________________ programming?
Object-oriented
Natural language
Operands
Procedural
If Francis wants to edit the BackColor, foreColor and visibility of the label, he must proceed to the _______________.
Toolbox
Property
Windows explorer
Solution explorer
Kuya Ruver is about to put all the objects on the form such as textbox and checkbox, what essential part of Visual Studio does he imply?
Property
Windows explorer
Toolbox
Solution explorer
Which of the following is a relational operator that means “Less than or Equal to”?
<=
>=
<>
=<
This is a blank form that shows automatically when starting a Visual Basic program.
Menu Bar
Toolbox
Properties window
Windows form object
Classify the data type that must be held in each variable.
INT - for integer
DOUBLE - for double
STRING - for string
Q: STUDENT NUMBER
DOUBLE
STRING
INT
Classify the data type that must be held in each variable.
INT - for integer
DOUBLE - for double
STRING - for string
Q: SCHOOL ADDRESS
DOUBLE
STRING
INT
Classify the data type that must be held in each variable.
INT - for integer
DOUBLE - for double
STRING - for string
Q: FLOOR NUMBER
DOUBLE
STRING
INT
CONST
Which symbol creates an access(hot) key in the text of a menu item?
&
@
$
#
Which type of control is used to design a form like above
Check Box
Option Button
Combo Box
List Box
Which property determines whether a control is displayed to the user?
Show
Visible
Enabled
Hide
It displays the properties that are associated with an object.
Project Window
Properties Window
Form Window
Explorer
________________ is used to accept input from the user.
Label Box
Picture Box
Command Box
Text Box
______________ is the code to change the background color of the form.
me.backcolor = "vbred"
me.backcolor : vbred
me.backcolor 'vbred'
me.backcolor = vbred
____________ is used to appear message dialog box.
MsgBox
Label Box
Text Box
Command Box
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
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
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
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
