• 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/29

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;

29 Cards in this Set

  • Front
  • Back
modularized program
a program that is broken into smaller units of code, such as methods
the return point
the statement that appears immediately after the method call.
top- down design
Programmers commonly use this technique to break down an algorithm into methods
A parameter variable
often simply called a parameter, is a special variable that receives an argument when a method is called
An array
allows you to store a group of items of the same data type together in memory
elements
The storage locations in an array are known as
a subscript
Each element in an array is assigned a unique number known as
an initialization list
The series of values inside the braces and separated with commas is called
the foreach loop.
C# provides a special loop that, in many circumstances, simplifies array processing. the loop automatically iterates once for each element in the array. It is known as
Garbage collection
a process that periodically runs, removing all unreferenced objects from memory
search algorithms
Various techniques known as_______have been developed to locate a specific item in a larger collection of data, such as an array
The sequential search algorithm
uses a loop to sequentially step through an array, starting with the first element. It compares each element with the value being searched for and stops when the value is found or the end of the array is encountered.
a reference copy
Only a reference to the array object is copied, not the contents of the array object
output file
describe a file to which data is written
A text file
contains data that has been encoded as text using a scheme such as Unicode
A binary file
contains data that has not been converted to text
direct access file
(which is also known as a random access file), you can jump directly to any piece of data in the file without reading the data that comes before it.
sequential access file
access data from the beginning of the file to the end of the file
a filename
Files on a disk are identified by__________
filename extensions
short sequences of characters that appear at the end of a filename and are preceded by a period (which is known as a “dot”).
A file object
an object that is associated with a specific file and provides a way for the program to work with that file
A newline character
an invisible character that specifies the end of a line of text
the Write method
write an item to a file without a newline character immediately following it
a read position.
When a program works with an input file, a special value known as __________ is internally maintained for that file
OpenFileDialog
control displays a standard Windows Open dialog box
dialog box
is useful in applications that must open an existing file because it allows the user to browse the system and select the file.
the InitialDirectory property.
specify another directory to be initially displayed
the control’s Title property
change the default text displayed in the title bar
Load event
When you run an application, the application’s form is loaded into memory and an event known as the _____takes place