1: In the following code, what is the access specifier of the attribut (data)len
ID: 3697157 • Letter: 1
Question
1: In the following code, what is the access specifier of the attribut (data)length? class Rectangle { double length;double width; public: double area(double length, double width) {return length * width;} }; 2: How many objects have been created in this program? #include using namespace std; class affair { int a; public: affair() {a++;}; int geta() {return a;}; }; int main() { affair a1, a2, a3; cout << "There are " << a3.geta() << "objects" << endl; return 0; } 3: What is the difference between the 'Book" structure and the 'Book' class? struct Book { string title; int publi_year;}; class Book { string title; int publi_year;};Explanation / Answer
1 Ans:
2 Ans:
3 Ans:
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.