Which of the following is not a correct variable type?

A real
B char
C float
D double

Correct Answer: real

A variable provides us with named storage that our programs can manipulate. Each variable in C++ has a specific type, which determines the size and layout of the variable's memory the range of values that can be stored within that memory and the set of operations that can be applied to the variable.

The name of a variable can be composed of letters, digits, and the underscore character. It must begin with either a letter or an underscore. Upper and lowercase letters are distinct because C++ is case-sensitive −

 

Basic types of variables:

1. bool

Stores either value true or false.

2. char

Typically a single octet (one byte). This is an integer type.

3. int

The most natural size of an integer for the machine.

4. float

A single-precision floating point value.

5. double

A double-precision floating point value.

6. void

Represents the absence of type.

7. wchar_t

A wide character type.

Related Questions

Total costs in the short-term are classified into fixed costs and variable costs. Which one of the following is a variable cost?
An assumption, which states that there must be linear relationship between independent variable and dependent variable is
An indication in a way that variance of y-variable is explained by x-variable which is shown as
If ‘F’ is the fixed cost, ‘V’ is the variable cost per unit (or total variable costs) and ‘P’ is the selling price of each unit (or total sales value), then break-even point is equal to

Next steps