Basics of Programming Flashcards

Logic and Design (40 cards)

1
Q

Ascending order

A

describes the arrangement of data items from lowest value to highest.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Backup file

A

a copy of a file that is kept in case altered values need to be restored to their original state.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Batch processing

A

a data handling technique that performs the same tasks with many records in sequence.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Binary file

A

a file that contains data that has not been encoded as text.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Byte

A

a storage measurement equal to eight bits.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Characters

A

letters, numbers, or special symbols such as A, 7, or $.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Child file

A

a copy of a file after revision.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Closing a file

A

an action that makes a file no longer available to an applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Computer file

A

a collection of data stored on a nonvolatile device in a computer system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Control break

A

a temporary detour in the logic of a program for special group processing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Control break field

A

a variable that holds the value that signals a special processing break in a program.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Control break program

A

a program in which a change in the value of a variable initiates special actions or processing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Control break report

A

a report that lists items in groups. Frequently, each group is followed by a subtotal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Data hierarchy

A

represents the relationship between databases, files, records, fields, and characters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Database

A

a logical container that holds related data that can easily be retrieved to serve the information needs of an organization.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Default input and output devices

A

hardware devices that do not require opening; usually they are the keyboard and monitor respectively.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Delimiter

A

a character, such as a comma, used to separate fields in a data file.

18
Q

Direct access files

A

random access files

19
Q

Directories

A

organization units on storage devices that can contain multiple files as well as additional directories.

20
Q

Fields

A

single data items that represent a single attribute of a record or class, such as lastName, streetAddress, or annualSalary.

21
Q

File’s path

A

the combination of the disk drive plus the complete hierarchy of directories in which a file resides.

22
Q

Filename

A

an identifying name given to a computer file that frequently describes the contents.

23
Q

Filename extension

A

a group of characters added to the end of a filename that indicates the file type.

24
Q

Instant access files

A

random access files in which records can be accessed immediately.

25
Interactive program
a program in which a user makes direct requests or provides input while a program executes.
26
Merging files
the act of combining two or more sequentially ordered files while maintaining the order.
27
Opening a file
the process of locating a file on a storage device, physically preparing it for reading, and associating it with an identifier inside a program.
28
Parent file
a copy of a file before revision.
29
Primary file
a file that holds relatively permanent data.
30
Random access files
files that contain records that can be accessed directly.
31
Reading from a file
the act of copying data from a file on a storage device into computer memory.
32
Real-time applications
describe applications that require a record to be accessed immediately while a client is waiting.
33
Records
groups of data fields that go together for some logical reason.
34
Sequential files
files in which records are stored one after another in some order and whose records must be accessed in sequence.
35
Single-level control break
a break in the logic of a program based on the value of a single variable.
36
Sorting
the process of placing records in order by the value in a specific field or fields.
37
Text file
a file that contains data that can be read in a text editor.
38
Transaction file
a file that holds temporary data used to update a primary file.
39
Update a primary file
apply transaction to a primary file making it current
40
Writing to a file
the act of copying data from computer memory into persistent storage.