Module 2 Flashcards
A sequence of statements whose objective is to acomplish a task
Computer program
The process of planning and creating a program
Programing
A set of rules, symbols, and special words
Programming language
A reserved word
Keyword
A function that is already written and provided as part of the system
Predifined
A collection of statements; when activated, or exicuted, it acomplishes something
Function
A set of values together with a set of operations
Data types
A data type that deals with decimal numbers
Floating point
A c++ identifier consists of letters, digits, and the underscore character (_); it must begin with a letter or underscore
Identifiers
A data type that deals with integers, or numbers without a decimal part
Integral
A user-defined data type
Enumeration
A form of scientific notation used to represent real numbers
Floating point notation
The data type ____ is used in C++ to represent any decimal number between -3.410^38 and 3.410^38. The memory allocated for a values of the ___ data type is FOUR BYTES
Float
A predifined ordering for the characters in a set
Collating sequence
Values of the type double
Double precision
The data type _____ is used in C++ to represent any decimal number between -1.710^308 and 1.710^308. The memory allocated for a value of the ____ type is EIGHT BYTES
Double
The maximum number of significant digits
Percision
Numbers appearing in an arithmetic experession
Operands
An expression constructed using arithmetic operators and numbers
Arithmatic experession
The ____ of arithmetic operators is said to be from left to right.
Associativity
Arithmetic operation on character data
Character arithmetic
An operator that has two operands
Bianary operators
An expression in which all operands are integers
Integral expressions
An operator that has only one operand
Unary operators
An expression in which all operands in the experession are floating point numbers
Floating point (decimal) expressions
An expression that has operands of diffrent data types
Mixed expressions
When a value of one data type is automatically changed to another data type
Implicit type coercion
A memory location whose content is not allowed to change during program execution
Named constant
A string containing no characters
Null
Also known as type conversion or type casting - is used to explicitly convert one data type to another data type
Cast operator
A memory location whose content may change during program execution
Variable
=; assigns whatever is on the right side to the variable on the left side
Assignment opperator
A statement that places data into variables using cin and»_space;
Input (read)
The first time a value is placed in the variable
Initialized
- -; decreases the value of the variable by one
Decrement opperators
Has the syntax variable ++
Post increment
++; increases the value of a variable by 1
Increment operator
Has the syntax ++variable
Pre-increment
Has the syntax variable- -
Post-decrement
Has the syntax - - variable
Pre-decrement
An output to the standard output device via cout and»_space;
Output statement
Statements that perform calculations, manipulate data, create output, accept input, and so on
Executable statments
Statements that are used to declare things, such as variables
Decleration statments
A program that carries out preprocessor directives
Preprocessor
Exicutable statements that inform the user what to do
Prompt lines
Statements that are used to write simple assignments statements in a more concise notation
Compound assignment statements