FE Chemical Ch55 Computer Software

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/38

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:42 PM on 7/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

39 Terms

1
New cards

Alphanumeric data

characters that can be displayed or printed, including numerals and symbols ($,%,&,etc.) but excluding control characters (tab, carriage return, form feed, etc.)

2
New cards

Coding

manner in which alphanumeric data and control characters are represented by sequences of bits

3
New cards

American Standard Code for Information Interchange (ASCII)

seven-bit code permitting 128 (2^7) different combinations

4
New cards

Extended Binary Coded Decimal Interchange (EBCDIC)

widespread use in IBM mainframe computers, allowing a maximum of 256 (2^8) different characters

5
New cards

Hexadecimal

or “packed” format, used to simplify working with EDCDIC data. Each byte is converted into two strings of four bits each. The two strings are then converted to hexadecimal. Largest possible EBCDIC character is coded FF in hexadecimal.

6
New cards

program

sequence of computer instructions that performs some function

7
New cards

algorithm

procedure consisting of a finite set of well-defined steps. each step in the algorithm usually is implemented by one or more instructions (e.g. READ, GOTO, OPEN, ETC.) entered by the programmer.

8
New cards

source code statements

the original “human-readable” instructions

9
New cards

declaration

defines a variable, specified the type of data a variable can contain (e.g. INTEGER, REAL, etc.) and reserves space for the variable in the program’s memory.

10
New cards

assignments

give values to variables (e.g. X=2)

11
New cards

commands

instruct the program to take a specific action, such as END, PRINT, or INPUT

12
New cards

Functions

specific operations (e.g. calculating the SUM of several values) that are grouped into a unit that can be called within the program.

13
New cards

software

if the executable program is kept on disk or tape

14
New cards

firmware

if the program is places in ROM (read-only memory) or EPROM (erasable programmable read-only memory)

15
New cards

hardware

computer mechanism itself

16
New cards

flowchart

step-by-step drawing representing a specific procedure or algorithm

17
New cards
term image

terminal symbol: begins and ends a flowchart

18
New cards
term image

input/output symbol: defines an I/O operation, including those to and from keyboard, printer, memory, and permanent data storage

19
New cards
term image

processing symbol: refer to calculations or data manipulation

20
New cards
term image

predefined process symbol: refer to calculations or data manipulation

21
New cards
<p></p>

decision symbol: indicates a point where a decision must be made or two items are compared

22
New cards
term image

connector symbol: indicates that the flowchart continues elsewhere

23
New cards
term image

off-page symbol: indicates that the flowchart continues on the following page

24
New cards
term image

annotation symbol: comments added

25
New cards

machine laguage instructions

intrinsically compatible and understood by the computer’s central processing unit (CPU). They are the CPU’s native language

26
New cards
27
New cards
28
New cards
29
New cards
30
New cards
31
New cards
32
New cards
33
New cards
34
New cards
35
New cards
36
New cards
37
New cards
38
New cards
39
New cards