/*1*/ *2*/ ackage quiz1; ublic class TestInheritacne { public static void main(String a[]) /*3*/ { /*1* /Employee Empl = new Employee(12-123-0, "Mioara dela Cruz", 35, 35000.00); /*2* /Employee Emp2 = new Employee(); /*3*/Emp1.printInformation(); /*4* / Emp1.name = "Iolanthe Mioara"; /*5* /Emp2.printInformation(idNumber, name, age, salary); /*6* /TeachingStaff cherA = new TeachingStaff("12-123-1", "Tyraelkane dela Cruz", 48, 60000.00, 30); /*7*/TeachingStaff cherB = new TeachingStaff("12-123-2", "Morpheus de Guzman", 45, 48000.00, 24); /*8*/cherA.teachCourse("Data Structure"); /*9*/cherB.teachCourse("0OP", 1); /*18*/cherA.printInformation(); }} /*4*/ /*5*/ /*6*/ /*7*/ /*8*/ /*9*/ /*10*/

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

Complete only the code. need it asap. no need for comments

Type on the text box provided the word VALID if the statement is correct.  Otherwise , type INVALID. 

 

/*1*/
/*2*/
package quiz1;
public class TestInheritacne {
/*3*/
public static void main(String a[])
{
/*4*/
/*1*/Employee Emp1 = new Employee(12-123-0, "Mioara dela Cruz", 35, 35000.00);
/*2*/Employee Emp2 = new Employee();
/*3*/Emp1.printInformation();
/*4*/Emp1.name = "Iolanthe Mioara";
/*5*/Emp2.printInformation(idNumber, name, age, salary);
/*6*/TeachingStaff cherA = new TeachingStaff("12-123-1", "Tyraelkane dela Cruz", 48, 60000.00, 30);
/*7*/TeachingStaff cherB = new TeachingStaff("12-123-2", "Morpheus de Guzman", 45, 48000.00, 24);
/*8*/cherA.teachCourse("Data Structure");
/*9*/cherB.teachCourse("OOP", 1);
/*10*/cherA.printInformation(); }}
/*5*/
/*6*/
/*7*/
/*8*/
/*9*/
/*10*/
Transcribed Image Text:/*1*/ /*2*/ package quiz1; public class TestInheritacne { /*3*/ public static void main(String a[]) { /*4*/ /*1*/Employee Emp1 = new Employee(12-123-0, "Mioara dela Cruz", 35, 35000.00); /*2*/Employee Emp2 = new Employee(); /*3*/Emp1.printInformation(); /*4*/Emp1.name = "Iolanthe Mioara"; /*5*/Emp2.printInformation(idNumber, name, age, salary); /*6*/TeachingStaff cherA = new TeachingStaff("12-123-1", "Tyraelkane dela Cruz", 48, 60000.00, 30); /*7*/TeachingStaff cherB = new TeachingStaff("12-123-2", "Morpheus de Guzman", 45, 48000.00, 24); /*8*/cherA.teachCourse("Data Structure"); /*9*/cherB.teachCourse("OOP", 1); /*10*/cherA.printInformation(); }} /*5*/ /*6*/ /*7*/ /*8*/ /*9*/ /*10*/
D Employeejava 3 D TeachingStaff.java
D Testinheritacne.java
1 package quiz1;
public class Employee {
String IdNumber;
String name;
int age;
double salary;
6
public Employee(String idNumber, String name, int age, double salary) {
IdNumber = idNumber;
this.name = name;
this.age = age;
this.salary = salary;
}
ge
10
11
12
13
14
15
16
public void printInformation(){
System.out.println("ID Number: "+ IdNumber);
System.out.println("Name:
System.out.println("Age: " + age);
System.out.println("Salary: " + salary);
}
}
17
18
+ name);
19
| 20
| 21
|22
| 23
package quiz1;
1.
extends
public class TeachingStaff (1) Employee {
int totalloadUnits;
2.
idNumber
public TeachingStaff(String idNumber, String name, int age, double salary, int totalloadUnits) {
super ((2). (3) (4) (5));
this.totalloadUnits -(6)
}
3.
naem
4.
age
public void teachCoursk(String course)
5.
salary
System.out.println(name +" is teaching the course " + (7));
}
6.
totalLoadUnit:
public void teachCourse((8). course, String day)
System.out.println(name +" teaches the course
}
+ course + " on "+ day);
7.
Course
public void printInformation()
{
„(9)- printInformation();
System.out.print("Total Load: "+ (10));
8.
String
9.
super
10.
totalLoadUnit:
Transcribed Image Text:D Employeejava 3 D TeachingStaff.java D Testinheritacne.java 1 package quiz1; public class Employee { String IdNumber; String name; int age; double salary; 6 public Employee(String idNumber, String name, int age, double salary) { IdNumber = idNumber; this.name = name; this.age = age; this.salary = salary; } ge 10 11 12 13 14 15 16 public void printInformation(){ System.out.println("ID Number: "+ IdNumber); System.out.println("Name: System.out.println("Age: " + age); System.out.println("Salary: " + salary); } } 17 18 + name); 19 | 20 | 21 |22 | 23 package quiz1; 1. extends public class TeachingStaff (1) Employee { int totalloadUnits; 2. idNumber public TeachingStaff(String idNumber, String name, int age, double salary, int totalloadUnits) { super ((2). (3) (4) (5)); this.totalloadUnits -(6) } 3. naem 4. age public void teachCoursk(String course) 5. salary System.out.println(name +" is teaching the course " + (7)); } 6. totalLoadUnit: public void teachCourse((8). course, String day) System.out.println(name +" teaches the course } + course + " on "+ day); 7. Course public void printInformation() { „(9)- printInformation(); System.out.print("Total Load: "+ (10)); 8. String 9. super 10. totalLoadUnit:
Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
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