Which Of The Following Is The Correct Way Of Implementing An #1079
Which of the following is the correct way of implementing an interface A by class B?
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Interfaces Packages - Java Interfaces - Quiz No.1.
Which of the following is the correct way of implementing an interface A by class B?
class B extends A{}
class B implements A{}
class B imports A{}
None of the mentioned