43.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
template <class T>
T max (T& a, T& b) 
{
    return (a>b?a:b);
}
int main () 
{
    int i = 5, j = 6, k;
    long l = 10, m = 5, n;
    k = max(i, j);
    n = max(l, m);
    cout << k << endl;
    cout << n << endl;
    return 0;
}

45.
What are Random-access Iterators?

47.
What does this template function indicates?
==================
template<class T>
T func(T a)
{
	cout<<a;
}
==================

48.
What does the second parameter of the main function represent?