Problem A Write a class FinancialAidApplicant which describes an applicant for financial aid and will be used by a financial aid officer. Qualification is based on annual household income and the number of people in the household. If the household income is less than $20,000, the applicant automatically qualifies regardless of how few people are in the household. If the household income is at least $20,000 but at most $60,000 and there are 4 or more people in the household, the applicant qualifies. If the household income is more than $60,000 but at most $150,000 and there are 6 or more people in the household, the applicant qualifies. For all other cases, the applicant does not qualify. You should declare static constants for the numbers mentioned above.

Operations Research : Applications and Algorithms
4th Edition
ISBN:9780534380588
Author:Wayne L. Winston
Publisher:Wayne L. Winston
Chapter19: Probabilistic Dynamic Programming
Section19.4: Further Examples Of Probabilistic Dynamic Programming Formulations
Problem 7P
icon
Related questions
Question
• public String getName () Gets the applicant's name.
public void setNumberOfPeopleInHousehold (int people) Sets
the number of people in the household.
public void setHouseholdIncome (double income) Sets the
household income.
• public boolean qualifies () Returns true if the applicant qualifies and false
otherwise.
Do not use independent if statements for method qualifies().
Transcribed Image Text:• public String getName () Gets the applicant's name. public void setNumberOfPeopleInHousehold (int people) Sets the number of people in the household. public void setHouseholdIncome (double income) Sets the household income. • public boolean qualifies () Returns true if the applicant qualifies and false otherwise. Do not use independent if statements for method qualifies().
Problem A
Write a class FinancialAidApplicant which describes an applicant for financial aid
and will be used by a financial aid officer.
Qualification is based on annual household income and the number of people in the household. If
the household income is less than $20,000, the applicant automatically qualifies regardless of
how few people are in the household. If the household income is at least $20,000 but at most
$60,000 and there are 4 or more people in the household, the applicant qualifies. If the household
income is more than $60,000 but at most $150,000 and there are 6 or more people in the
household, the applicant qualifies. For all other cases, the applicant does not qualify.
You should declare static constants for the numbers mentioned above.
The class has three instance variables and one constructor that takes a String, a double, and an int
as parameters to initialize the instance variables.
public FinancialAidApplicant(String name,
double income,
int numberOfPeople)
Transcribed Image Text:Problem A Write a class FinancialAidApplicant which describes an applicant for financial aid and will be used by a financial aid officer. Qualification is based on annual household income and the number of people in the household. If the household income is less than $20,000, the applicant automatically qualifies regardless of how few people are in the household. If the household income is at least $20,000 but at most $60,000 and there are 4 or more people in the household, the applicant qualifies. If the household income is more than $60,000 but at most $150,000 and there are 6 or more people in the household, the applicant qualifies. For all other cases, the applicant does not qualify. You should declare static constants for the numbers mentioned above. The class has three instance variables and one constructor that takes a String, a double, and an int as parameters to initialize the instance variables. public FinancialAidApplicant(String name, double income, int numberOfPeople)
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Operations Research : Applications and Algorithms
Operations Research : Applications and Algorithms
Computer Science
ISBN:
9780534380588
Author:
Wayne L. Winston
Publisher:
Brooks Cole
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning