Looking for guidance and help.

Hello folks, I am just looking for guidance how to solve this task. I know it's easy, so please consider I am a beginner here. 🙂 1. Create a program that allows input of student data. For each student, the following information is known: name and surname, index number, and a list of subjects. For each student in specialist studies, the same data as for a regular student should be known (implemented using inheritance), along with the name of the specialization. The maximum number of subjects for regular studies is 30, and for specialist studies is 10. Enable the display of all data for both types of students. Check the index number format (must be in the format of two digits – two digits). Be sure to use exceptions. Create an interface that has a method for calculating the total tuition fee (number of years * amount per year, which is an input argument) and a method for adding subjects. The Student class must implement the created interface. For specialist students, override the implemented methods. Create a StudentService class that holds an array of students and allows: Adding students to the student array, in the first empty position. If the entry fails, generate a custom checked exception (which should be specially defined) with an appropriate error message. Display of all students (only name and surname). Display of statistics (how many students are in regular vs. specialist studies). Random selection of one specialist student. Calculation of total tuition fees. Notes: After running the program, print your name, surname, and student index number in the console. It is mandatory to demonstrate polymorphism in the assignment. All attributes must be private. All classes must have the necessary constructors, as well as getters and setters.The names of classes and methods must be in English.Reading from the keyboard is not allowed except in the Test class.You must demonstrate the functionality of all created methods.
1 Reply
JavaBot
JavaBot•2d ago
⌛ This post has been reserved for your question.
Hey @Balsa! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here. 💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.

Did you find this page helpful?