Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Getting Student Information using Generic Class A generic type is a class or interface that is parameterized over types. In this challenge, you have to

Getting Student Information using Generic Class A generic type is a class or interface that is parameterized over types. In this challenge, you have to create two generic classes for an Array List. There are three classes, StudentClass, StudentList, and ScoreList. In StudentClass, there is a getQuery() function that contains the input data. In getQuery (String studentData, String query), studentData is a dataset that differs based on the query type. Query is the conditional string to perform an operation. There are five types of queries: Query Type 1:Find student names beginning with a particular letter. Query Type 2:Find student's having a particular blood group. Query Type 3:Find the number of students who scored higher than the specified threshold score. Query Type 4:Find the average of student marks. Query Type 5:Find the average of student CGPA. Note: In studentData, student data is separated by space ( ). In a query string, query data is separated by comma (,). The first character refers to the query type, and the second character refers to the conditional string (based on the query type). For Query Type 1: Sample input:studentData = Raja Ravi Vinay Rahul Arun query = 1,r Sample output:RajaRaviRahul Note: The output for query type 1 should end with a new line character. For Query Type 2: Sample input: studentData = Raja Ravi Vinay Rahul Arunquery = 2,B- AB- B+ O+ B+,B+ Sample output :VinayArun Note: The output for query type 2 should end with a new line character. For Query Type 3: Sample input:studentData = 96 78 93 45 90 42 69 query = 3,90 Sample output:3 students scored 90 above For Query Type 4: Sample input:studentData = 96 78 93 45 90 42 69 query = 4 Sample output:73.29 For Query Type 5: Sample input:studentData = 5.6 6.7 8.9 5.8 query = 5 Sample output:6.75 In the StudentList class, you have to implement the functionalities for the first three types of queries using an Array List. Type should be generic. Create 6 methods. In the ScoreList Class, you have to implement the functionalities of the next two types of queries using an Array List. Type should be generic. It must extend from the Numbers class, and restrict the type (int, float, double, and long). Create 4 methods. The first three methods are common for both classes: 1. void addElement(Type) Must reflect the add() function of the Array List. 2. void removeElement(Type) - Must reflect the remove() function of the Array List. 3. Type getElement(int) Must reflect the get() function of the Array List. In StudentList, 4. beginsWith(String) Must return the names of students starting with the specified letter, for the names in the list. 5. bloodGroupOf(String[],String) Must return the names of students with the specified blood group, for the names in the list. 6. int thresholdScore(int) Must return the count of the number of students whose score is higher than the specified threshold score, for the scores in the list. In ScoreList, 4. double averageValues() Must return the average of the set of values in the list. Note: The methods mentioned above should be defined as public methods.

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

Microsoft Visual Basic 2008 Comprehensive Concepts And Techniques

Authors: Gary B. Shelly, Corinne Hoisington

1st Edition

1423927168, 978-1423927167

More Books

Students also viewed these Databases questions

Question

Question Can plan participants borrow from a VEBA?

Answered: 1 week ago

Question

Question What is an educational benefit trust and how is it used?

Answered: 1 week ago