
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
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.](https://content.bartleby.com/qna-images/question/53d74f90-b890-4c8a-a54a-743a1878b988/45aaf361-1dfa-4061-bfa0-5e02c7cc9792/r19lmqs_thumbnail.jpeg)
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

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 8 steps with 6 images

Knowledge Booster
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
- please write the Java source code of Sin(x) and plot itarrow_forwardI need the code from start to end with no errors and the explanation for the code ObjectivesJava refresher (including file I/O)Use recursionDescriptionFor this project, you get to write a maze solver. A maze is a two dimensional array of chars. Walls are represented as '#'s and ' ' are empty squares. The maze entrance is always in the first row, second column (and will always be an empty square). There will be zero or more exits along the outside perimeter. To be considered an exit, it must be reachable from the entrance. The entrance is not an exit.Here are some example mazes:mazeA7 9# # ###### # # ## # # #### # ## ##### ## ########## RequirementsWrite a MazeSolver class in Java. This program needs to prompt the user for a maze filename and then explore the maze. Display how many exits were found and the positions (not indices) of the valid exits. Your program can display the valid exits found in any order. See the examples below for exact output requirements. Also, record…arrow_forward
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

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)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education