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

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;

25 Cards in this Set

  • Front
  • Back
A Computer professional in charge of creating applications.
System Analyst
______ – going from a larger domain to a smaller domain
Demotion
______ which has two operator symbols that separate three operands
Trinary
_______ – A control structure that allows the flow of execution to jump to a different part of the program. This category is rarely used in modular structured programming.
Branching
"_______– that is have two operands one on each side of the operator"
Binary
________ – the change is explicitly done with the cast operator
Explicit
________– that is only have one operand
Unary
__________ – going from a smaller domain to a larger domain
Promotion
__________ (and by extension local data storage) occurs when a variable is defined 'inside of a function'.
Local scope
___________ = Any collection of statements or declarations written in some human-readable computer programming language.
source code
________________ in all lower case
variables
________________ IN ALL UPPER CASE
CONSTANTS
1) Nothing 2) Integer 3) Floating-Point 4) Complex
data type families
A branching control structure that causes a function to jump back to the function that called it.
return
A branching control structure that causes a loop to stop its current iteration and begin the next one.
continue
A branching control structure that causes the logic to jump to a different place in the program.
goto
A branching control structure that terminates the existing structure.
break
A C++ control structure that can be made to act like a case control structure.
switch
A code directing an output device to do something.
escape code
A common way to show logical relationships.
truth tables
A compiler alert that there might be a problem.
warning
A compiler directive that includes or excludes lines of code based on a Boolean expression.
conditional compilation
A compiler directive to insert the contents of a file into the program.
include
A complex data item that uses object oriented programming.
string class
A control structure that allows some lines of code to be executed many times.
iteration