You are on page 1of 2

Graphical User Interface Microsoft Windows uses a GUI environment. GUI (pronounced "gooey") stands for _______.

Object-oriented Visual Basic is a(n) _______.


programming language
Properties, methods, and In Visual Basic, we work with objects that have _______.
events
Writing the Basic code When you plan a Visual Basic program, you follow a three-step process that should end with _______.
Creating the interface After the steps for planning a Visual Basic project are competed, you can begin actually constructing a
program by _______.
Create the interface, set Which of the following shows the correct order for creating a Visual Basic program?
the properties, write the
code
The solution file The _______ holds information about the solution and the projects it contains. This is the file that you
open to work on or run your project
Resx Each Visual Basic project contains a text file that defines all resources used by the form. This file has a
_______ extension
The Form Designer The Visual Studio environment contains many different windows. Which window will be the user
window interface when the project is running?
The Toolbox Which window do you open if you want to see all of the objects that you can add to a form?
GroupBox Which of the following objects is a container?
Text The property used to display information in a TextBox is _______.
The property is Text In NameTextBox.Text, _______.
Label control If you want to display text that cannot be modified by the user, use the _______.
TextBox control If you want to display text that can be modified by the user, use the _______.
Textbox Assume that you are designing a form and it will be necessary for the user to type in his name. You
should use a _____________ for inputting the user's name
TextAlign You can modify the setting in the _______ property if you want to align the text in a textbox to appear
on the left side of the box
ObjectName.TextAlign = In code, you can make the text in a text box display left-aligned by using ________.
HorizontalAlignment.Left
MaskedTextBox Which of the following is the best choice when the user needs to input her social security number?
RichTextBox You are designing a form and you need a control that will be used for the user to type a brief summary
of his work experience. You want to allow formatting options and multiple lines. The best control for
this task would be a _______.
Identifier When you declare a variable or a named constant, Visual Basic reserves an area of memory and assigns
it a name called a(n) _______.
1 to 16,383 characters The length of identifiers is limited to _______.
Progress bar An object used to create a loading screen.
Combo1.additem("item1") Code to add items on a combo box.

MDI Form This serves as the main form of a program or application created.

Progress Bar An object used to create a loading screen.


Option Button What object do you use when creating a form with choices where a user can only choose one answer?
Combo Box An object used to give choices in a list.
False MessageBox.Show("How are you today?", "Greetings!")

The underline word in the above code will be displayed inside the message box.
True The access modifier defines the accessibility of a procedure or function.
False A function procedure does not return a value.
False A sub procedure is a block of code enclosed within the function and end function statements.
False InputBox.Show("Input your grade:", "4th Quarter", "99.99") The above code is a correct declaration for
the input box.
1970 Visual Basic was developed in what year?
True The arguments are the values passed to the parameters of a procedure or function.
True A procedure declared with the friend keyword is accessible from within the program that contains its
declaration and from anywhere else in the same assembly.
False We have three (3) types of procedures in VB.NET.
False An input box is used to display the information to the user and you cannot type anything on this dialog
box.
False The private access modifier is the default access mode in VB.NET.
True The Chr(10) is used to go to the next line.
True A procedure declared with the public keyword is accessible from anywhere within and outside of the
application.
False A message box is used to request a value from the user.

False A function procedure is a block of code enclosed within the sub and end sub statements.
True The MsgBoxStyle is used to display the buttons like Yes/No/Cancel in a message box.
True The codes sub grade(ByVal G As Long) and public sub grade(ByVal G As Long) are the same.
False We can call a sub procedure by using the function name.
True The input box has a default buttons of Ok and Cancel.
True A function procedure returns a value to the calling code which is different from a sub procedure.
True The access modifier defines the accessibility of a procedure or function.

You might also like