200k views
5 votes
1≥2csvsdvfdsadsfasdfasdfasdfasedfdsa

User Fiddy Bux
by
6.0k points

1 Answer

2 votes

Answer:

The answer is "False"

Explanation:

following are the code to this question:

#include <iostream>//defining header file

using namespace std;

int main() //defining main method

{

if(1>=2)//defining if block to check value

{

cout<<"True";//print message

}

else//else block

{

cout<<"False"; //print message

}

return 0;

}

Output:

false

In this question, a condition is defined, that checks the given condition, which is 1>=2, in this condition and if block is used, when the condition is true, it will print the true message, otherwise, it will go to the else block, in which, it will print the false message.

User Stephen Elmendorf
by
4.9k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.