Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#include using namespace std; class Seminar { int time; public: Seminar() //Function 1 { time = 30; cout < < Seminar starts now on

#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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions

Question

Police departments are immune to recruitment problems. True False

Answered: 1 week ago

Question

1. What is Ebola ? 2.Heart is a muscle? 3. Artificial lighting?

Answered: 1 week ago

Question

1. Which is the most abundant gas presented in the atmosphere?

Answered: 1 week ago