1/49
meow meow!
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
the term GUI stands for ____________
graphical user interface
which of the following is a common output device
Monitor
which of the following is computer hardware
printer
once a program is stored in ____________, the CPU of the computer can access the instructions in the program and perform activities.
RAM
the physical equipment associated with a computer is known as ____________.
hardware
Visual Studio 2017 is a type of ____________, which provides services and tools that enable a developer code, test, and implement a program or application.
integrated development environment
to display the solution explorer window, click ____________ on the menu bar, then click solution explorer on the menu.
view
you can move a button object by playing the mouse on the button, the mouse pointer changes to a(n) ____________, then drag the button to any location
crosshair with four arrow
the process of changing and updating programs is called ____________.
program and system maintancence
to start a new project, click the ____________ button on the standard toolbar.
new project
the toolbox contains many graphical elements called ____________ components that you can place on the windows form object as graphical user interface objects.
.NET
to make two objects that same size, select both objects, click Format on the menu bar and then point to the ____________ command.
make same size
a ____________ indicates when a text within an object is aligned
red snap line
the ____________ document consists of a table that specifies an object in the user interface that will cause an event, the action taken by the user to trigger the event, and the event processing that must occur.
event planning
the ____________ property is used to adjust an image size to fit in a picturebox object
SizeMode
to run a program that you have created, click the ____________ button on the standard toolbar.
start
the section of code called the ____________, handles events that user actions trigger by executing code that performs the required processing.
event handler
____________ is the set of instructions written by a developer that direct a program to carry out the processing required
program code
the ____________ message means the visual basic compiler detected a coding error in the program.
build errors
comments in code are displayed as ____________ text
green
the ____________ is message means that the Visual Basic compiler detected a coding error in the program
build errors
a(n) ____________ data type hold a nondecimal whole number in visual basic
integer
a variable that can be used in multiple regions of a program is called a ____________ variable.
global
to define a variable, the keyword ____________ is required.
dim
which of the following separates a class name from a procedure name?
dot operator
a(n) ____________ object allows you to enter data into a program.
textbox
____________ indicates where a textbox object aligns with other objects on the windows forms object.
snap lines
a variable that can only be referenced within the region of the program where it is defined is called a ____________ variable
local
a ____________ in a program indicates the variable is not referenced within the program
green squiggly underline
a(n) ____________ variable will contain one permanent value throughout the execution of the program.
constant
the msgboxstyle.____________ displays an OK and cancel button
OKCancel
instead of using a series of if statements, an easier and clearer way is to use ____________ statements
case select
the ____________ logical operator allows you to state conditions that are best expressed in a negative way
Not
which of the following logical operator has the lowest order of precedence
Or
the MsgBoxStyle icon ____________ displays an informational icon
information
visual basic includes a code library called intellisense ____________, that you can insert into an application
code snippets
when more than one condition is included in an if...then...else statement, the conditions are called a(n) ____________ condition
compound
all ____________ statements result in the tested condition either being true or false
conditional
when using visual studio 2017, characters are stored and sequenced in ____________, which is a coding methodology that can accommodate more than 60,000 characters.
unicode
when using relational operators in a Select Case statement, you use the keyword ____________ with the relational operator.
is
which of the following is not a compound operator?
*/
a(n) ____________ loop is tested before the loop is entered.
top controlled
a(n) ____________ object allows you to gather input without placing a textbox for the requested value on the windows form object
inputbox
each repetition of a loop is called a(n) ____________.
iteration
a variable that contains an accumulated value is called a(n) ____________.
accumulator
to use a keyboard shortcut, press and hold the ____________ key and then press the designated hot key
ALT
a(n) ____________ is a loop that never ends.
infinite loop
a(n) ____________ proved a keyboard shortcut and is underlined in the menu.
hot key
a ____________ is a group of commands, or items, presented in a list.
menu
starting a loop with a preset value in the variable tested in the condition is called ____________.
priming the loop