Question: Q1. A class named 'ColorPrinter' has a public method named 'setUpPrinter' that has double parameters for the 'width' and 'length' of the paper used and
Q1. A class named 'ColorPrinter' has a public method named 'setUpPrinter' that has double parameters for the 'width' and 'length' of the paper used and has no return value. Fill in the blank to complete the code to make an overloaded method that includes the above parameters and adds a parameter of the Color class named 'paperColor'. List the parameters in the order given here.
_________________________ { this.width = width; this.length = length; this.paperColor = paperColor; } Q2. A class named 'ColorPrinter' extends a class named 'Printer'. Given the following statement, enter the declared type of myPrinter.
Printer myPrinter = new ColorPrinter();
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
