1.

What is the output of this program?
#include 
using namespace std;
namespace One
{
int K = 15;
int L = 11;
}
namespace Two
{
double K = 4.016;
double L = 7.6001;
}
int main ()
{
using One::K;
using Two::L;
bool p, q;
p = K > L;
q = One::K < Two::L;
cout << p < return 0;
}

A. 15 11
B. 11 15
C. 4 7
D. 7 4
E. 1 0
Answer» F.


Discussion

No Comment Found

Related MCQs