Computer Programing Semester 1 Final

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/49

flashcard set

Earn XP

Description and Tags

meow meow!

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

50 Terms

1
New cards

the term GUI stands for ____________

graphical user interface

2
New cards

which of the following is a common output device

Monitor

3
New cards

which of the following is computer hardware

printer

4
New cards

once a program is stored in ____________, the CPU of the computer can access the instructions in the program and perform activities.

RAM

5
New cards

the physical equipment associated with a computer is known as ____________.

hardware

6
New cards

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

7
New cards

to display the solution explorer window, click ____________ on the menu bar, then click solution explorer on the menu.

view

8
New cards

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

9
New cards

the process of changing and updating programs is called ____________.

program and system maintancence

10
New cards

to start a new project, click the ____________ button on the standard toolbar.

new project

11
New cards

the toolbox contains many graphical elements called ____________ components that you can place on the windows form object as graphical user interface objects.

.NET

12
New cards

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

13
New cards

a ____________ indicates when a text within an object is aligned

red snap line

14
New cards

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

15
New cards

the ____________ property is used to adjust an image size to fit in a picturebox object

SizeMode

16
New cards

to run a program that you have created, click the ____________ button on the standard toolbar.

start

17
New cards

the section of code called the ____________, handles events that user actions trigger by executing code that performs the required processing.

event handler

18
New cards

____________ is the set of instructions written by a developer that direct a program to carry out the processing required

program code

19
New cards

the ____________ message means the visual basic compiler detected a coding error in the program.

build errors

20
New cards

comments in code are displayed as ____________ text

green

21
New cards

the ____________ is message means that the Visual Basic compiler detected a coding error in the program

build errors

22
New cards

a(n) ____________ data type hold a nondecimal whole number in visual basic

integer

23
New cards

a variable that can be used in multiple regions of a program is called a ____________ variable.

global

24
New cards

to define a variable, the keyword ____________ is required.

dim

25
New cards

which of the following separates a class name from a procedure name?

dot operator

26
New cards

a(n) ____________ object allows you to enter data into a program.

textbox

27
New cards

____________ indicates where a textbox object aligns with other objects on the windows forms object.

snap lines

28
New cards

a variable that can only be referenced within the region of the program where it is defined is called a ____________ variable

local

29
New cards

a ____________ in a program indicates the variable is not referenced within the program

green squiggly underline

30
New cards

a(n) ____________ variable will contain one permanent value throughout the execution of the program.

constant

31
New cards

the msgboxstyle.____________ displays an OK and cancel button

OKCancel

32
New cards

instead of using a series of if statements, an easier and clearer way is to use ____________ statements

case select

33
New cards

the ____________ logical operator allows you to state conditions that are best expressed in a negative way

Not

34
New cards

which of the following logical operator has the lowest order of precedence

Or

35
New cards

the MsgBoxStyle icon ____________ displays an informational icon

information

36
New cards

visual basic includes a code library called intellisense ____________, that you can insert into an application

code snippets

37
New cards

when more than one condition is included in an if...then...else statement, the conditions are called a(n) ____________ condition

compound

38
New cards

all ____________ statements result in the tested condition either being true or false

conditional

39
New cards

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

40
New cards

when using relational operators in a Select Case statement, you use the keyword ____________ with the relational operator.

is

41
New cards

which of the following is not a compound operator?

*/

42
New cards

a(n) ____________ loop is tested before the loop is entered.

top controlled

43
New cards

a(n) ____________ object allows you to gather input without placing a textbox for the requested value on the windows form object

inputbox

44
New cards

each repetition of a loop is called a(n) ____________.

iteration

45
New cards

a variable that contains an accumulated value is called a(n) ____________.

accumulator

46
New cards

to use a keyboard shortcut, press and hold the ____________ key and then press the designated hot key

ALT

47
New cards

a(n) ____________ is a loop that never ends.

infinite loop

48
New cards

a(n) ____________ proved a keyboard shortcut and is underlined in the menu.

hot key

49
New cards

a ____________ is a group of commands, or items, presented in a list.

menu

50
New cards

starting a loop with a preset value in the variable tested in the condition is called ____________.

priming the loop