adplus-dvertising
frame-decoration

Question

What is the output of these program?
    #include <iostream>
    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

Answer: (d).10

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of these program?