Computer Science, asked by cutiepie7918, 5 months ago

These are data types that are numerical in nature because C++ stores them as zero (0) or zero (1), internally.

Answers

Answered by ERRATIC47
0

Answer:

yes it is right

is this the complete questions

Answered by surajnegi0600
0

Answer:

These data types are likely referring to boolean data types, which can store a value of either true (1) or false (0) in C++.

Explanation:

In C++, a boolean data type is a variable that can store one of two values: true or false. These values are typically represented internally as 1 for true and 0 for false. A boolean variable can be used to store a true or false value, and can be used in conditional statements to control the flow of a program.

For example, you can use a boolean variable to check if a certain condition is met, and then use that result to determine whether to execute a certain block of code or not.

bool condition = true;

if (condition) {

// Code to execute if condition is true

} else {

// Code to execute if condition is false

}

In this example, the variable 'condition' is a boolean data type and its value is true, so the code inside the if statement will be executed.

More questions and answers:

https://brainly.in/question/30497620

https://brainly.in/question/6388928

#SPJ2

Similar questions