class A{ protected int al; protected double a2; protected boolean a3; public A() { a1 = 0; a2 = 0; a3 = false; System.out.printin("A's Default Constructor."); } public A(int al, double a2, boolean a3) { this.al = al; this.a2 = a2; this.a3 = a3; System.out.printIn("A's Overloaded Constructor.");  } } class B extends A{ protected char b1; public B() { b1 = ' "; System.out.printin("B's Default Constructor."); } public B(int al, double a2, boolean a3, char b1) { this.al = al; this.a2 = a2; this.a3 = a3; this.b1 = b1; System.out.printin("B's Overloaded Constructor."); } } class C extends B{ protected String c1; public C() { super (); c1 = " ; System.out.print]n("C's Default Constructor."); } public C(int al, double a2, boolean a3, char b1, String c1) { super (al, a2, a3, b1); this.c1 = c1; System.out.printin("C's Overloaded Constructor."); } } ignoring the 'time left' message, Check the above code and specify which object declaration generates an error. Question 1Answer A obj2 = new A(1, 1.1, false); C obj7 = new C(2, 2.2, false, 'f'); B obj6 = new B(2, 2.2, false, 'f'); A obj1 = new A(); B obj3 = new B(); B obj5 = new B(1, 1.1, true); B obj4 = new A(1, 1.1, true); C obj8 = new C(2, 2.2, false);

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

class A{ protected int al; protected double a2; protected boolean a3; public A() { a1 = 0; a2 = 0; a3 = false; System.out.printin("A's Default Constructor."); } public A(int al, double a2, boolean a3) { this.al = al; this.a2 = a2; this.a3 = a3; System.out.printIn("A's Overloaded Constructor.");  } } class B extends A{ protected char b1; public B() { b1 = ' "; System.out.printin("B's Default Constructor."); } public B(int al, double a2, boolean a3, char b1) { this.al = al; this.a2 = a2; this.a3 = a3; this.b1 = b1; System.out.printin("B's Overloaded Constructor."); } } class C extends B{ protected String c1; public C() { super (); c1 = " ; System.out.print]n("C's Default Constructor."); } public C(int al, double a2, boolean a3, char b1, String c1) { super (al, a2, a3, b1); this.c1 = c1; System.out.printin("C's Overloaded Constructor."); } } ignoring the 'time left' message, Check the above code and specify which object declaration generates an error. Question 1Answer A obj2 = new A(1, 1.1, false); C obj7 = new C(2, 2.2, false, 'f'); B obj6 = new B(2, 2.2, false, 'f'); A obj1 = new A(); B obj3 = new B(); B obj5 = new B(1, 1.1, true); B obj4 = new A(1, 1.1, true); C obj8 = new C(2, 2.2, false);

Expert Solution
steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education