asked 200k views
5 votes
1≥2csvsdvfdsadsfasdfasdfasdfasedfdsa

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.

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.