What is not a major hardware component in a computer? - Answers Operating system
application software are programs that _________. - Answers perform general user needs
The purpose of an algorithm is to ____________. - Answers describe problem solution
The CPU only processes instructions written in this language - Answers Pseudo code
An object in Visual Basic ____ - Answers is a reusable self contained unit
GUI (Graphical User Interface) applications ______________ - Answers are more complex for
programmers to write
Which of the following is NOT an example of an event in Visual Basic? - Answers drag a control onto a
form from the tool box
*When creating a Visual Basic desktop application, you will initially ____________. - Answers place
controls on a desktop editing form
Programs should use comments (remarks) to __________________. - Answers make the code more
understandable to human readers of the program
Flowcharts and pseudocode are_________________________. - Answers statements that describe the
programs input and output
How would you get the Design window to display if it is not visible in your project? - Answers Click View
on the menu bar, and then on the View menu click Designer
The auto hide feature __________________ - Answers will cause the window to stay minimized as a tab
along one of the edges of the screen until the mouse cursor is over the tab
A ToolBar __________________________ - Answers can be used as a shortcut for executing commands
found in the menu
What is the purpose of the Toolbox? - Answers To select controls and place on an application form
How do you display a tooltip? - Answers hold the mouse cursor over a button on the toolbar or toolbox
for a few seconds
A Visual Basic keyword _________________ - Answers has a special purpose and cannot be used as a
variable or other identifier
What is the purpose of testing a program with sample data? - Answers To insure that the application's
output is correct
, *A TextBox control ______________ - Answers is typically used to input data
Suppose you want to find the perimeter of a rectangular room whose sides are represented by
dblLength and dblWidth. Which of the following statements correctly calculates the perimeter
of a room? - Answers dblPerimeter = 2 * dblLength + 2 * dblWidth
When your program is in run mode, you __________ - Answers can interact with the program
In Visual Basic we work with objects, which have ___ - Answers Properties, methods, and events
Which is considered a valid step for developing a Visual Basic application? - Answers all of the above
Finding and fixing programming errors is called ______ - Answers debugging
Which is true about txtName.Text ? - Answers the property is Text.
If you want to display text which cannot be modified by the user, use the ____ - Answers Label control
Which of the following statements display the words "Visual Basic" in a label named lblTitle? - Answers
lblTitle.Text = "Visual Basic"
Which statement is true regarding a program identifier? - Answers Both a and b are correct.
Which statement closes the current form? - Answers Me.Close( )
Microsoft Visual Basic is an object-oriented programming language. - Answers True
Assignment statements execute from left to right, assigning the value on the left side of the
equal sign to the property named on the right side of the equal sign. - Answers False
A method is a template of an object much like a blueprint is of a house - Answers False
Pseudocode is a combination of programming language and machine code. - Answers False
Properties are characteristics of an object such as size, color etc. - Answers True
Which of the following is NOT a Visual Basic object? - Answers Algorithm
One feature of event-driven programming is ______________ - Answers an action takes place when a
control such as button is pushed
Which of the following is NOT a feature of the use of Graphical User Interfaces? - Answers The use of a
GUI makes programming simpler