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

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;

42 Cards in this Set

  • Front
  • Back

Programs that make a computer useful for everyday tasks are known as _________________________.

Application Software

Which of the following is not an example of operating system software?



-Microsoft word


-Linux


-Microsoft Windows


Microsoft word

What functions does an interpreter perform with the instructions in a high level programming language?

Translate and executes

The term used for a set of rules that must be strictly followed when writing a program is ________________.

Syntax

The first high level programming language designed that could perform complex mathematical calculations was ________________.

FORTRAN

Which computer language uses short words known as mnemonics for writing programs?

Assembly

The process known as the ____________________ cycle is used by the CPU to execute instructions in a program.

fetch-decode-execute

Compared to an interpreted program, a compiled program usually ____________________.

Executes faster

Which type of error produces incorrect but does not prevent the program from running?

Logic

According to the book, a case structure is a __________________________ decision structure.

Dual alternative

Which operator would make the following statement true: True_________False



-Or


-And


OR

Which operator would make the following statement false: True_________False



-Or


-And


AND

If the expression is false the _______ operator will return true.

NOT

What type of operators are the following?


< > >= <=

Relational

What is the encoding technique called that is used to store negative numbers in the computer's memory?

Twos Compliment

Which type of error produces incorrect results but does not prevent the program from running?

Logic

What is the informal language that programmers use to create models of programs that have no syntax rules and are not meant to be compiled or executed?

Psuedocode

A _________________ Structure is a set of statements that execute in order order they appear.

Sequence

The program development cycle is made up of ___________ steps that are repeated until no errors can be found in the program.

Five

What is used to represent an assignment statement in a flowchart?

Processing symbol

Which mathematical operator is used to raise something to the second power?

^

The value of the expression 12-4*3/2+9 is ______.

15

Which of the following is not a variable data type?



-Integers


-Number


-Strings

Number

A value that cannot be changed during the programs execution is called a _____________________________.

Named constant

Which of the following is not a benefit of using modules?



-Simpler code


-Faster development


-Code reuse


-User friendly

User friendly

What is the term used for the memory address of the location of the statement immediately after the module call?

Return Point

In a flowchart, the module call is represented by a ________________ symbol with vertical bars at each side.

Rectangle

What tool would a programmer use to visualize the relationship between modules?

Hierarchy Charts

What is the term used for the variable that receives an argument that passed into a module?

Parameter

Passing an argument by ___________ means that only a copy of the arguments value is passed into the parameter variable.

Value

A pass by ____________________ argument means that the argument is passed into a parameter that will reference the content of the argument in the module.

Reference

Which structure is a logical design that controls the order in which a set of set of statements executes?

Control

Consider the following statement. A store is giving a discount of 30% of all purchases over $100. Which of the following is not an appropriate structure to use to program the statement?


- Control


- Sequence


- Decision

Sequence

The _______ symbol indicates that some condition must be tested in a flowchart.

Diamond

What type of operator can be used to determine whether a specific relationship exists between two values?

Relational

Which operator is used to determine that the operands are not exactly of the same value?

!=

In a flowchart ______________ is used to denote a terminal point.

An oval

In a flowchart _______________ is used to denote a process.

Rectangle

In a flowchart _______________ is used to denote input and output?

A parallelogram

A storage location in memory that is represented by a name is called _________________?

A variable

Which of the following is not a valid variable name in the most computer languages?


- Number1


- 2Numbers


- No1Number


- AbC123

2Numbers

A logical variable is ______________________________.

Variable that is declared inside a module