92.
Identify the incorrect option.

93.
Choose the incorrect option.

96.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
enum colour 
{
    green, red, blue, white, yellow, pink
};
int main()
{
    cout << green<< red<< blue<< white<< yellow<< pink;
    return 0;
}

98.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
    int i;
    enum month 
    {
        JAN = 1, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC
    };
    for (i = MAR; i <= NOV; i++)
       cout << i;
    return 0;
}

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.