61.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
class class0 
{
    public:
    virtual ~class0(){}
    protected:
    char p;
    public:
    char getChar();
};
class class1 : public class0 
{
    public:
    void printChar();
};
void class1::printChar()
{
    cout  << "True" << endl;
}
int main() 
{
    class1 c;
    c.printChar();
    return 1;
}

62.
What is the signature of math in function using command line arguments?

63.
What will be the output of the following C++ code?
#include <stdio.h>
#include <ctype.h>
int main ()
{
    int i = 0;
    int cx = 0;
    char str[] = "Hello, welcome!";
    while (str[i])
    {
        if (ispunct(str[i])) cx++;
            i++;
    }    
    printf ("%d\n", cx);
    return 0;
}

65.
By seeing which operator thus this C++ program stops getting the input?
#include <iostream>
#include <fstream>
using namespace std;
int main ()
{
    char ch;
    streambuf * p;
    ofstream os ("test.txt");
    pbuf = os.rdbuf();
    do {
        ch = cin.get();
        p -> sputc(ch);
    } while (ch != '.');
    os.close();
    return 0;
}

66.
Which of the following statements regarding absolute and concrete classes in C++ is correct?

67.
What will be the output of the following C++ code?
#include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
template<class T>
class A
{
    public:
	A(){
		cout<<"Created\n";
	}
	~A(){
		cout<<"Destroyed\n";
	}
};
 
int main(int argc, char const *argv[])
{
	A <int>a;
	return 0;
}