1.

What is the output of this program?
#include <iostream>
using namespace std;
int main()
{
int Number1 = 7;
int Number2 = 5;
if ( Number1 && Number2 )
{
cout << "True"<< endl ;
}
else
{
cout << "False"<< endl ;
}
return 0;
}

A. Compilation Error
B. False
C. Runtime Error
D. True
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs