62.
Pick out the correct statement about the override.

65.
What is the use of type() function in any container?

66.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
   int var = -12;
   try {
      cout<<"Inside try\n";
      if (var < 0)
      {
        throw var;
        cout<<"After throw\n";
      }
   }
   catch (int var ) {
      cout<<"Exception Caught\n";
   }
 
   cout<<"After catch\n";
   return 0;
}

67.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
void test(int x)
{
    try
    {
        if (x > 0)
            throw x;
        else
            throw 'x';
    }
    catch(int x)
    {
        cout<<"integer:"<<x;
    }
    catch(char x)
    {
        cout << "character:" << x;
    }
}
int main()
{
    test(10);
    test(0);
}