A error does not prevent the program from running, but causes it to produce incorrect results.

A__ error does not prevent the program from running, but causes it to produce incorrect results.
a. syntax
b. hardware
c. logic
d. fatal

A______ is a single function that the program must perform in order to satisfy the customer.
a. task
b. software requirement
c. prerequisite
d. predicate

A___ is a set of well-defined logical steps that must be taken to perform a task
a. logarithm
b. plan of action
c. logic schedule
d. algorithm

an informal language that has no syntax rules, and is not meant to be complied or executed is called
a. faux code
b. pseudocode
c. Java
d. a flow chart

A________ is a diagram that graphically depicts the steps that thake place in a program.
a. flowchart
b. step chart
c. code graph
d. program graph

A ____ is a set of statements that execute in the order that they appear.
a. serial program
b. sorted code
c. sequence structure
d. ordered structure

A__ is a sequence of characters that is used as data
a. sequence structure
b. character collection
c. string
d. text block

a_______ is a storage location in memory that is represented by a name
a. variable
b. register
c. RAM slot
d. byte

a_____ is any hypothetical person that is using a program and providing input for it
a. designer
b. user
c. guinea pig
d. test subject

a__ is a message that tells or asks the user to enter a specific value.
a. inquiry
b. input statement
c.directive
d. prompt

a___ sets a variable to a specific value
variable declaration
assignment statement
math expression
sting literal

In the expression 12 + 7, the values on the right and left of the + symbol are called
operands
operators
arguments
math expression

A_____ operator raises a number to a power
modulus
multiplication
exponent
operand

a____ operation performs division but instead of retuning the quotient it returns the remainder
modulus
multiplication
exponent
operand

A ____ specifies a variables name and data type
assignment
variable specification
variable certification
variable declaration

Assigning a value to a variable in a declaration statement is call
allocation
initialization
certification
programming style

A ______ variable is one that has been declared but has not been initialized or assigned a value
undefined
uninitialized
empty
default

A__ is a variable whose content has a value that is read only and cannot be changed during the programs execution
static variable
initialized variable
named constant
locked variable

A debugging process in which you imagine that your are the computer executing a programming is called
imaginative computing
role playing
mental simulation
hand tracing

Short notes placed n different parts of a program explaining how those parts of the program work are called
comments
reference manuals
tutorials
external documentation

  • School University of California, Los Angeles
  • Course Title COM SCI MISC
  • Pages 1

This preview shows page 1 out of 1 page.

A ___error does not prevent the program from running, but causes it to produceincorrect results.LogicA __________ is a single function that the program must perform in order to satisfy thecustomer.

Get answer to your question and much more

A(n) __________ is a set of well-defined logical steps that must be taken to perform atask.

Get answer to your question and much more

An informal language that has no syntax rules, and is not meant to be compiled orexecuted is called __________.

Get answer to your question and much more

A __________ is a diagram that graphically depicts the steps that take place in aprogram.

Get answer to your question and much more

A __________ is a sequence of characters.

End of preview. Want to read the entire page?

Upload your study docs or become a

Course Hero member to access this document

Tags

Imperative programming

Which type of error will not prevent a program from running but will produce incorrect results?

Logic errors A logic error represents a mistake in the software flow and causes the software to behave incorrectly. This type of error can cause the program to produce an incorrect output, or even hang or crash. Unlike syntax errors, logic errors will not prevent a program from compiling.

What is an error in a program that prevents the program from running?

A program with a syntax error will not run. A program with a logic error will run but it will not perform as expected.

What type of error produces incorrect results?

A logic error in a program is any code that causes incorrect output/results even though the program runs to completion. A program with a logic error may give the correct answer sometimes and the wrong answer other times. Logic errors typically are the most difficult type of errors to find and correct.

What are mistakes that cause a running program to produce incorrect results called?

comp sci.