Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

Hello... can you solve this code for me?

Write the java code corresponding to the following UML
diagram:
Person (Abstract)
name: String
age: int
Person(name:String, age:int)
/l get + set methods for each attributes
print():void(abstract)
Teacher
Student
salary: float
Teacher(n:String, a:int, float s)
// get + set methods
print():void
id: int
Student(name:String, age:int,id:int)
// get + set methods
print():void
Indications:
Person is an abstract class containing the abstract method
Print().
In Teacher and Student the method print() will print the
information of either Teacher or Student.
Write the class university corresponding to the following
UML diagram. It contains three attributes.
Tab is an array of Person. sizeTab is the size of Tab. The
attribute n represents the number of elements added to
the tab. When the tab is empty n is equal to 0.
The constructor University(sizeTab) will initialize the
different attributes and allocate the memory to the array
Tab.
addPerson(p:Person) will add the new person to Tab.
University
Tab[]: Person
sizeTab:int
n:int
University(size Tab)
void addPerson(p:Person)
printAll():void
The method printAll() will print all the information of
the Persons inside Tab.
Write the main method. Create three Teacher and three
Student and add them to University Object and print
them all.
expand button
Transcribed Image Text:Write the java code corresponding to the following UML diagram: Person (Abstract) name: String age: int Person(name:String, age:int) /l get + set methods for each attributes print():void(abstract) Teacher Student salary: float Teacher(n:String, a:int, float s) // get + set methods print():void id: int Student(name:String, age:int,id:int) // get + set methods print():void Indications: Person is an abstract class containing the abstract method Print(). In Teacher and Student the method print() will print the information of either Teacher or Student. Write the class university corresponding to the following UML diagram. It contains three attributes. Tab is an array of Person. sizeTab is the size of Tab. The attribute n represents the number of elements added to the tab. When the tab is empty n is equal to 0. The constructor University(sizeTab) will initialize the different attributes and allocate the memory to the array Tab. addPerson(p:Person) will add the new person to Tab. University Tab[]: Person sizeTab:int n:int University(size Tab) void addPerson(p:Person) printAll():void The method printAll() will print all the information of the Persons inside Tab. Write the main method. Create three Teacher and three Student and add them to University Object and print them all.
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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.
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education