Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Write down Java program to implement class UML diagram and methods: 15 Course - courseName : String - sudents : String[] - numberOfStudents :

image text in transcribedimage text in transcribed

1. Write down Java program to implement class UML diagram and methods: 15 Course - courseName : String - sudents : String[] - numberOfStudents : int + Course(courseName : String) + getCourseName() : String + addStudent(student: String) : void + dropStudent(student: String) : void + getStudents(): String[] + getNumberOfStudents : int + clear() : void i. ii. Array students will keep the names of students, consider the names are unique and there are 10 students. addStudent() adds a student in the Course, by adding student if the number is more than the array length, the array length will be doubled to accommodate more students. You can use System.arraycopy utility for it. dropStudent() will drop a student from Course, the empty space due to drop is filled iii. iii. dropStudent() will drop a student from Course, the empty space due to drop is filled by shifting the remaining students towards the null space and the last array element will be made null. clear() will clear the array list. Add three students S1, S2 and S3 to CSE 215.2, print out those students, then drop student S1 and print out those student list again. iv. V

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Spatial Databases With Application To GIS

Authors: Philippe Rigaux, Michel Scholl, Agnès Voisard

1st Edition

1558605886, 978-1558605886

More Books

Students also viewed these Databases questions

Question

Briefly comment on how both sides handled the dispute.

Answered: 1 week ago

Question

What might be the possible drawbacks of your proposal?

Answered: 1 week ago

Question

What is DDL?

Answered: 1 week ago