62.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
    int x = -1;
    unsigned int y = 2;
 
    if(x > y) 
    {
        cout << "x is greater";
    }
    else 
    {
	cout << "y is greater";
     }      
}

63.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
void addprint()
{
    static int s = 1;
    s++;
    cout << s;
}
int main()
{
    addprint();
    addprint();
    addprint();
    return 0;
}

64.
What is the value of p in the following C++ code?
#include <iostream>
using namespace std;
int main()
{
    int p;
    bool a = true;
    bool b = false;
    int x = 10;
    int y = 5;
    p = ((x | y) + (a + b));
    cout << p;
    return 0;
}

65.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int f(int p, int q)
{
    if (p > q)
        return p;
    else
        return q;
}
main()
{
    int a = 5, b = 10;
    int k;
    bool x = true;
    bool y = f(a, b);
    k =((a * b) + (x + y));
    cout << k;
}

Read More Section(Variables and Data Types in C plus plus)

Each Section contains maximum 100 MCQs question on Variables and Data Types in C plus plus. To get more questions visit other sections.