31.
What is meant by type_info?

32.
What will be the output of the following C++ code?
#include <vector> 
#include <algorithm> 
#include <iostream> 
 
using namespace std;
 
int main() 
{ 
    vector<int> v(10, 2); 
    if (all_of(v.cbegin(), v.cend(), [](int i){ return i % 2 == 0; })) 
    { 
	cout << "All numbers are even\n"; 
    } 
    else
    {
	cout << "All numbers are not even\n"; 
    }
    return 0;
}

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

34.
What are Engine Adaptors?

37.
Which of the following syntax is used to convert any variable to its original type?

38.
What will be the output of the following C++ code?
#include <iostream> 
#include <vector> 
#include <forward_list>  
 
using namespace std; 
 
int main() 
{ 
    forward_list<int> fl1;
    fl1.assign(5,10);
    for (int&c : fl1)  
        cout << c << " ";
    cout<<endl;
    fl1.insert_after(fl1.begin(), {1,2,3});
    for (int&c : fl1)  
        cout << c << " ";
    cout<<endl; 
    return 0; 
}

40.
How to protect the heap from affecting the memory?