Question
Answer the questions (i) (ii) (iii) and (iv) after going through the following class: #include using namespace std; class Seminar { int time; public: Seminar()
Answer the questions (i) (ii) (iii) and (iv) after going through the following class:
#include
using namespace std;
class Seminar
{
int time;
public:
Seminar() //Function 1
{
time = 30;
cout << "Seminar starts now on "
}
void lecture() //Function 2
{
cout << "Lectures in the seminar" << endl;
}
Seminar(int duration) //Function 3
{
time = duration;
cout << "Seminar starts now on " << time <<" minutes"<< endl;
}
~Seminar() //Function 4
{
cout << "Thanks "
}
};
i. Write statements in C++ that would execute Function 1 and Function 3 of class Seminar. (1 marks)
ii. Write the output that will be displayed in std output terminal.(2 marks)
iii. In Object-Oriented Programming, what is Function 4 referred as and when does it get invoked/called? (1 marks)
iv. In Object-Oriented Programming, which concept is illustrated by Function 1 and Function 3 together?(1 marks)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started