81.
Why is it expensive to use objects for the exception?

83.
What will be the output of the following C++ code?
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
    cout << numeric_limits<short int> :: max() << endl;
}

84.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
class Foo
{
    public:
    Foo(int i = 0){ _i = i;}
    void f()
    {
        cout << "Executed"<<endl;
    }
    private:
    int _i;
};
int main()
{
    Foo *p = 0;
    p -> f();
}

87.
What will be the output of the following C++ code?
#include <stdio.h>
int main ()
{
    freopen ("myfile.txt", "w", stdout);
    printf ("This sentence is redirected to a file");
    fclose (stdout);
    return 0;
}

88.
What is the use of the indentation in c++?

90.
What will be the output of the following C++ code?
#include <iostream>
#include <iterator>
#include <list>
using namespace std;
int main () 
{
    list<int> mylist;
    for (int i = 0; i < 10; i++) 
    mylist.push_back (i * 10);
    list<int> :: iterator it = mylist.begin();
    advance (it, 5);
    cout  << *it << endl;
    return 0;
}