•  +977-9841229765
  • +977-9813789865

public boolean addStudent(String studentName) { if (students.size() < teacher.getMaxClassSize()) { students.add(studentName); return true; } return false; }

public ClassList(Teacher teacher) { this.teacher = teacher; this.students = new ArrayList<>(); }

public class Main { public static void main(String[] args) { Teacher chen = new Teacher("Ms. Chen", "AP CSA", 5); ClassList compSci = new ClassList(chen); compSci.addStudent("Maya"); compSci.addStudent("Jordan"); compSci.addStudent("Sam"); compSci.addStudent("Taylor"); compSci.addStudent("Casey"); boolean added = compSci.addStudent("Alex"); // Should fail — max size 5

Why Travel With Us

  • Over 28 Years of Experience
  • Team work with an Experts
  • Customize your own trip
  • Reasonable and Best Prices Granted
  • Flexibility on itinerary and safety
  • Best Customer Service Experiences
  • Customer Care and Service
  • Private tour and group tour (options)
  • Friendly, helpful and Professional staff
  • Hospitality and social work
  • Nepal,Tibet,Bhutan,Indian all around trip

Quick Contact

Contact Address

Dreams Nepal Holidays 
Treks & Expedition Pvt. Ltd
G.P.O. Box No: 21619,
Gokarneswar-9,Kathmandu,Nepal
Email:  
 

We are associate with Following Orginizations

7.2.8 Teacher Class List BEST