Which of the following statement is correct about the program given below? #include<iostream.h>
class CuriousTab
{
int x, y;
public:
CuriousTab(int &xx, int &yy)
{
x = xx;
y = yy;
Display();
}
void Display()
{
cout<< x << " " << y;
}
};
int main()
{
int x1 = 10;
int &p = x1;
int y1 = 20;
int &q = y1;
CuriousTab objCuriousTab(p, q);
return 0;
}
Correct Answer: The program will print the output 10 20.