I have this question
(i) identify a suitable class for the following items:
Newsweek, Reader’s Digest, The Economist, National Geography
(ii) give an example of an instance for the class Hospital
so the first part i am thinking is like this
class Magazine{ }
The second part what might that be?
can it be like this?
Hospital worldgeneralhospital = new Hospital();
Yes,
new MyClass()creates instance ofMyClass.