Assume you are given a class called Tyre that has two attributes type and size of type String. There is another class called Car that has three attributes name of type String, num of type integer and t of type Tyre, the constructor of class Car can be written as:   public Car(String n, int no, String t1, String s) { name = n; num = no; t = new Tyre(t1, s); }   public Car(String n, int no) { name = n; num = no;

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter11: More Object-oriented Programming Concepts
Section: Chapter Questions
Problem 1GZ
icon
Related questions
Question

Assume you are given a class called Tyre that has two attributes type and size of type String. There is another class called Car that has three attributes name of type String, num of type integer and t of type Tyre, the constructor of class Car can be written as:

 
  1. public Car(String n, int no, String t1, String s)

    { name = n;

    num = no;

    t = new Tyre(t1, s);

    }

     
  2. public Car(String n, int no)

    { name = n;

    num = no;

    type = “Unknown”;

    size = “Unassigned”;

    }

     
  3. public Car(String t, String s)

    { name = “Unknown”;

       num = “Unknown”;

       type = t;

       size = s;

     }

     
  4. public Car(String n, int no, Tyre tyre)

    { name = n;

    num = no;

    t.type = tyre.type;

    t.num = tyre.num;

    }

Assume you are given a class called Tyre that has two attributes type and size of type String. There is another class called Car that
has three attributes name of type String, num of type integer and t of type Tyre, the constructor of class Car can be written as:
public Car(String n, int no, String t1, String s)
{ name = n;
A) num = no;
t= new Tyre(t1, s);
}
public Car(String n, int no)
{ name = n;
num = no;
type = "Unknown";
size = "Unassigned";
}
public Car(String t, String s)
{ name = "Unknown";
num = "Unknown";
type = t;
size = s;
}
public Car(String n, int no, Tyre tyre)
{ name = n;
num - no;
t.type = tyre.type;
t.num - tyre.num;
}
Transcribed Image Text:Assume you are given a class called Tyre that has two attributes type and size of type String. There is another class called Car that has three attributes name of type String, num of type integer and t of type Tyre, the constructor of class Car can be written as: public Car(String n, int no, String t1, String s) { name = n; A) num = no; t= new Tyre(t1, s); } public Car(String n, int no) { name = n; num = no; type = "Unknown"; size = "Unassigned"; } public Car(String t, String s) { name = "Unknown"; num = "Unknown"; type = t; size = s; } public Car(String n, int no, Tyre tyre) { name = n; num - no; t.type = tyre.type; t.num - tyre.num; }
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Reference Types in Function
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
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning