Question
Consider that public class CBook extends Publication and in the driver class you have CBook c = new CBook(20, Clifford the red dog ); System.out.println(
Consider that
public class CBook extends Publication
and in the driver class you have
CBook c = new CBook(20, "Clifford the red dog" ); System.out.println( c.toString( ) ); System.out.println("==========");
What will be printed?
A. | title: book title | |
B. | title: Children Book title pages: 100 | |
C. | title: Clifford the red dog | |
D. | error because title is protected |
Consider that
public class CBook extends Publication
and in the driver class
CBook c = new CBook(20, "Clifford the red dog" ); System.out.println( c.title );
What will be printed?
A. | CBook@6d06d69c
because it uses the Object's toString method | |
B. | error because title is protected | |
C. | title: Clifford the red dog | |
D. | Clifford the red dog |
Consider that
public class CBook extends Pamphlet{
and in the driver class
CBook c = new CBook(20, "Clifford the red dog" ); System.out.println( c.company
What will be printed?
A. | error because pages are missing | |
B. | title: Clifford the red dog | |
C. | company pamphlet | |
D. | CBook@6d06d69c
because it uses the Object's toString method |
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