PT1420 programming study guide – Flashcards
34 test answers
Unlock all answers in this set
Unlock answers 34question
interpreter
answer
is a program that both translates and executes the instructions in a high-level language program. As the interpreter reads each individual instruction in the pro-gram, it converts it to a machine language instruction and then immediately executes it.
Unlock the answer
question
syntax
answer
A set of rules that combine symbols and formatting to define the legal structure of a computer program. think of it as grammar most languages have their own syntax
Unlock the answer
question
machine code
answer
Assembly language uses what type of instruction
Unlock the answer
question
logical error
answer
is a mistake that does not prevent the program from running, but causes it to produce incorrect results. ( Mathematical mistakes are common causes of logic errors.)
Unlock the answer
question
flow chart
answer
The graphical representation of all activities in a process including start, input and output, process and decision
Unlock the answer
question
start or terminate
answer
oval
Unlock the answer
question
data
answer
parallelogram
Unlock the answer
question
process
answer
rectangle
Unlock the answer
question
decision
answer
triangle
Unlock the answer
question
relational operators
answer
compares values based on differences in their values. > Greater than = Greater than or equal to
Unlock the answer
question
variable
answer
Used to store a value in memory that can be used in the program
Unlock the answer
question
variable scope (local and global)
answer
a variable is only available to section of a program based on 1-where its declared 2-Its variable type
Unlock the answer
question
logical operators
answer
compares two values based on Boolean (true-false). Logical operators include AND, NOT, OR.
Unlock the answer
question
pseudo code
answer
Shorthand notation for programming which uses a combination of informal programming structures and verbal descriptions of code.
Unlock the answer
question
Assembly language
answer
Which computer language uses short words also known as mnemonics for writing programs?
Unlock the answer
question
Fetch-decode-execute
answer
cycle is used by the computer to execute instructions in a program
Unlock the answer
question
Processing symbol
answer
represents an assignment statement in a flowchart
Unlock the answer
question
Named Constant
answer
A value that cannot be changed during the programs execution is called
Unlock the answer
question
Rectangle
answer
the module call is represented by a
Unlock the answer
question
Hierarchy Chart
answer
used to visualize the relationship between modules
Unlock the answer
question
Parameter
answer
the term used for the variable that receives an argument that passes into a module.
Unlock the answer
question
Passing an argument by Value
answer
means that a copy of the argument's value is passed into the parameter variable.
Unlock the answer
question
Global
answer
type of variable is visible to every module and the entire program
Unlock the answer
question
A pass by reference argument
answer
means that the argument is passed.
Unlock the answer
question
decision
answer
diamond
Unlock the answer
question
Control
answer
structure is a logical design that controls the order in which statements executes
Unlock the answer
question
sequential data
answer
circle
Unlock the answer
question
Algorithm
answer
A set of well-defined logical steps that must be taken to perform a
Unlock the answer
question
Which operator would make the following expression true
answer
NOT false true AND false true OR false
Unlock the answer
question
local variable
answer
variable declared inside a module
Unlock the answer