The document provides code for classes TempStudent, Student, Address, and MobileNumber. It then lists 11 questions about performing operations on a List of TempStudent objects such as getting students by name or address, converting between different list types, sorting, and filtering.
The document provides code for classes TempStudent, Student, Address, and MobileNumber. It then lists 11 questions about performing operations on a List of TempStudent objects such as getting students by name or address, converting between different list types, sorting, and filtering.
By looking at below example class, answer the following questions,
1. Get student with exact match name "James"
2. Get student with matching address "1235" 3. Get all student having mobile numbers 3333. 4. Get all student having mobile number 1233 and 1234 5. Create a List<Student> from the List<TempStudent> 6. Convert List<Student> to List<String> of student name 7. Convert List<students> to String 8. Change the case of List<String> 9. Sort List<String> 10. Conditionally apply Filter condition, say if flag is enabled then.