A new Java project InheritanceDemo, and two additional classes: Box.java and KleenexBox.java.   InheritanceDemo.java: // StudentName Today's Date public class InheritanceDemo { public static void main(String[] args) { KleenexBox kb1 = new KleenexBox(); KleenexBox kb2 = new KleenexBox(100);   System.out.println("kb1 has " + kb1.numTissues + " tissues and is " + kb1.length + " by " + kb1.width); System.out.println("kb2:" + kb2); } }   Box.java: // Student Name Today's Date   public class Box { public double width; public double length; public String label; } KleenexBox.java: // Student's Name Today's Date public class KleenexBox extends Box { public int numTissues;   //A new Kleenex box public KleenexBox() { numTissues = 50; length = 8.0; width = 5.0; }   //A new Kleenex box with a specific number of tissues public KleenexBox(int numberOfTissues) { numTissues = numberOfTissues; length = 8.0; width = 5.0; }   public String toString() { return ("This box is " + length + " by " + width + " and has " + numTissues + " tissues."); } }   Questions: 4.1. What type of variables are kb1 and kb2: Box or KleenexBox?   4.2. How does the programmer specify that KleenexBox is a type of Box?   4.3. Notice how KleenexBox objects have a length and a width, but those fields are not declared in the KleenexBox class. Where do the length and width fields come from?   4.4. What additional fields and/or methods does a KleenexBox have that a Box does not?   4.5. Suppose you wanted a new type of box called ShippingBox. Which of the following would you use to declare that class? (Choose one.) 4.5.a. public class ShippingBox extends Box {} 4.5.b public class Box extends ShippingBox {} 4.5.c. public class ShippingBox IS_A Box {} 4.5.d. public class ShippingBox { box A; }

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
100%

A new Java project InheritanceDemo, and two additional classes: Box.java and KleenexBox.java.

 

InheritanceDemo.java:

// StudentName Today's Date

public class InheritanceDemo {

public static void main(String[] args) {

KleenexBox kb1 = new KleenexBox();

KleenexBox kb2 = new KleenexBox(100);

 

System.out.println("kb1 has " + kb1.numTissues + " tissues and is " + kb1.length + " by " + kb1.width);

System.out.println("kb2:" + kb2);

}

}

 

Box.java:

// Student Name Today's Date

 

public class Box {

public double width;

public double length;

public String label;

}

KleenexBox.java:

// Student's Name Today's Date

public class KleenexBox extends Box {

public int numTissues;

 

//A new Kleenex box

public KleenexBox() {

numTissues = 50;

length = 8.0;

width = 5.0;

}

 

//A new Kleenex box with a specific number of tissues

public KleenexBox(int numberOfTissues) {

numTissues = numberOfTissues;

length = 8.0;

width = 5.0;

}

 

public String toString() {

return ("This box is " + length + " by " + width + " and has " + numTissues + " tissues.");

}

}

 

Questions:

4.1. What type of variables are kb1 and kb2: Box or KleenexBox?

 

4.2. How does the programmer specify that KleenexBox is a type of Box?

 

4.3. Notice how KleenexBox objects have a length and a width, but those fields are not declared in the KleenexBox class. Where do the length and width fields come from?

 

4.4. What additional fields and/or methods does a KleenexBox have that a Box does not?

 

4.5. Suppose you wanted a new type of box called ShippingBox. Which of the following would you use to declare that class? (Choose one.)

4.5.a. public class ShippingBox extends Box {}

4.5.b public class Box extends ShippingBox {}

4.5.c. public class ShippingBox IS_A Box {}

4.5.d. public class ShippingBox { box A; }

 

Rubric:

Student name is a comment on the first line of each .class file: -5 points if failed

Questions: 5 points, 1 point per question

Screenshot and source code: 5 points

 

Please paste a screenshot of a successful program run, and copy-and-paste the source code from your .java files, here:

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY