Which of the following statement is correct about the program given below? #include
class CuriousTab
{
public:
CuriousTab()
{
cout<< "Curious";
}
~CuriousTab()
{
cout<< "Tab";
}
};
int main()
{
CuriousTab objTab;
return 0;
}
Correct Answer: The program will print the output CuriousTab.