Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

i nees solve this qustion in java class *********************************** public class SClass { private int id; private int roomNumber; private String classManager; private Student mangerAssistance;

i nees solve this qustion in java class *********************************** public class SClass {

private int id; private int roomNumber;

private String classManager; private Student mangerAssistance; private char section; private Level level;

public enum level { FIRST, SECOND, THIRD, FORTH, FIFTH, SIXTH, SEVENTH, EIGHTH, NINTH, TENTH, ELEVENTH, TWELVETH; }

public SClass(int id, int roomNumber,ArrayList books, String classManager, Student mangerAssistance, ArrayList students, ArrayList lecture, char section) { this.id = id; this.roomNumber = roomNumber; this.books = books; this.classManager = classManager; this.mangerAssistance = mangerAssistance; this.student = students; this.section = section;

}

Map> levelSection = new HashMap<>(); } ***************************************** package school.model;

import java.util.ArrayList;

public class school { private Admin admin; private ArrayList instructors; private ArrayList sClasses;

public school(Admin admin, ArrayList instructors, ArrayList sClasses) { this.admin = admin; this.instructors = instructors; this.sClasses = sClasses; } }

Add to the module: Build a school (admin, instructors, sClasses ) Add to SClass (level, section, mangerAssistance, studentsMarks) Create a school control class : set admin Add class

((((Level should be in 1 12 Section should be like a, b or c incremental when I add class with same level))Shuld be map , hashmap))

Add instructor Create sClass control class Add student Build table (maybe many methods) Assign room number Assign books Assign random instructor as manger Assign the top avg student as manger Assistance

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

Advanced Database Systems

Authors: Carlo Zaniolo, Stefano Ceri, Christos Faloutsos, Richard T. Snodgrass, V.S. Subrahmanian, Roberto Zicari

1st Edition

155860443X, 978-1558604438

More Books

Students also viewed these Databases questions