• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/51

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

51 Cards in this Set

  • Front
  • Back
A(n) _____ _____ provides a simple way to gather input without placing a text box on a form.
Input boxes
A(n) _____ _____ displays a list of items and allows the user to select
an item from the list.
ListBox control
A(n) _____ _____, or _____ causes one or more statements to repeat.
repetition structure, or loop
If a loop does not have a way of stopping, it is called a(n) ______________________ loop.
infinite
A(n)______________________ is a variable that is regularly incremented or decremented each time a loop iterates.
counter
A(n)______________________ loop evaluates its test expression after each iteration.
pretest
Each repetition of the loop is called a(n) ______________________.
iteration
The _____ __ & _____ ___ statements, when placed inside the body of a Do Whileloop, stops the execution of the loop and causes the program to jump to the
statement immediately following the loop.
Exit Do and Exit For
A loop that is inside another loop is called a ______________________ loop
nested
A(n) __________________ object has methods that can generate a sequence of random numbers.
Random
The __________________ method generates a random integer.
Next
The __________________ method generates a random floating-point value.
NextDouble
The ___ function returns the periodic payment amount for a loan.
Pmt
The ____ function returns the principal payment for a specific period on a loan.
PPmt
The ____ function returns the required interest payment for a specific period on a loan.
IPMT
A(n) ___ _____ is a named block of code that performs a specific task and does not return a value.
Sub Procedure
A(n) _____ _____ statement causes a procedure to be executed.
procedure call
A(n) __________________ is a named block of statements that executes and returns a value.
function
You return a value from a function with the __________________ statement.
Return
__________________ local variables are not destroyed when a procedure returns.
Static
Values passed to a procedure or function are called __________________.
arguments
A(n) __________________ is a special variable that receives an argument passed to a procedure or function.
parameter
When an argument is passed by __________________ a copy of the argument is assigned to the parameter variable.
value
When an argument is passed by __________________ the called procedure has access to the original argument and can modify its value.
reference
The _____ _____ debugging command allows you to single-step through a called procedure or function.
Step Into
If a form is the ________________, it is displayed first when the project executes.
startup
When a ________________ form is displayed, no other form in the application can
receive the focus until the form is closed.
modal
A ________________ is a variable that holds the memory address of an object and allows you to work with the object.
object
The ________________ method removes a form from the screen but does not remove it from memory.
Hide
The ________________ method removes a form from the screen and releases the memory it is using.
Close
The ________________ method displays a form in modal style.
ShowDialog
The ________________ method displays a form in modeless style.
Show
Modules contain no _______ _________ procedures.
event handler
When a procedure declaration in a form file begins with ________________, the procedure may only be accessed by statements in the same form.
Private
To make a class-level variable available to statements outside the module, you declare it with the ________________ keyword.
Public
A module-level variable declared Public is also known as a ________________ variable.
global
You can disable a menu control in code by setting its ________________ property to False.
Enabled
When a menu item’s ________________ property equals True, a check mark appears on the menu next to the item’s text.
Checked
A ________ ________ is a pop-up menu that is displayed when the user right-clicks a form or control.
context menu
You access the individual variables in an array through a(n) __________________, which is a number that indentifies a specific element within an array.
subscript/index
The ___ _____ loop is a special loop designed specifically to access values from arrays and array-like structures.
For Each
__________________ arrays are two or more arrays that hold related data. The related elements in each array are accessed with a common subscript.
Parallel
The _____ _____ algorithm uses a loop to examine the elements in an array sequentially, starting with the first one.
sequential search
The __________________ statement resizes an array at runtime.
ReDim
The __________________ property holds the number of elements in an array.
Length
Declaring a two-dimensional array requires two sets of ________ __________.
upper subscripts
When a control’s __________________ property is set to False, it is considered disabled.
Enabled
The __________________ property causes the distance between a control’s edge and the form’s edge to remain constant, even when the form is resized.
anchored
The __________________ property causes a control to be positioned directly against one of the form’s edges.
docked
The __________________ control allows an application to automatically execute code at regularly timed intervals.
timer
The Timer control’s __________________ property specifies the number of milliseconds between timer events.
InitialDelay