Q164
What will be the output of the following C++ code? #include using namespace std; namespace first int x = 5; int y = 10; namespace second double x = 3.1416; double y = 2.7183; int main () using first::x; using second::y; bool a, b; a = x > y; b = first::y < second::x; cout << a << b; return 0;
A.
11
B.
01
C.
00
D.
10
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board