Answer:
Executive information system ( EIS )
Explanation:
- Other name of executive information system is executive support system.
- It helps in decision making needs.
- It gives simple access to internal and external data important to authoritative objectives.
- EIS more focuses on graphical display
- They offer solid reporting and drill-down capacities.
- In recent time EIS is more used in business intelligence.
Answer:
ssume that,
Maximum “students” count can be 10.
*Driver Class*
*Solution class*
import java.util.*;
class Student {
private String name;
private int rollNo;
public String getName() {}
public void setName(String name) {}
public int getRollNo() {}
public void setRollNo(int rollNo) {}
};
class ClassRoom {
private int i;
private Student[] students;
public void addStudent(String name, int rollNo) {}
public Student[] getAllStudents() {}
};