Ch 3 - Gaddis Flashcards

1
Q

cin Object

A

The cin object can be used to read data typed at the keyboard.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Mathematical expressions

A

C++ allows you to construct complex mathematical expressions using multiple operator and grouping symbols.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Type conversions

A

When an operator’s operands are of different data types, C++ will automatically convert them to the same data type. This can affect the results of mathematical expressions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Overflow and underflow

A

When a variable is assigned a value that is too large or too small in range for that variable’s data type, the variable overflows or underflows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Type casting

A

Type casting allows you to perform manual data type conversion.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Multiple assignment and combined assignment

A

Multiple assignment means to assign the same value to several variables with one statement.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Formatting output

A

The cout object provides ways to format data as it is being displayed. This affects the way data appears on the screen.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Working with Characters and string objects

A

Special functions exist for working with characters and string objects.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly