1.CSE 1300
Problem Solving Practice Conditional Statements
Question 1: Student Fees
All KSU students pay fees in addition to their tuition.
Using the code
...
nts pay fees in addition to their tuition.
Using the code provided below as a starting point, write a conditional statement that determines how much a student will pay in fees.
• Students registered for 1 – 4 hours pay $843 in student fees.
• Students enrolled in 5 or more hours pay $993 in student fees.
The program should also display a message to students who have not enrolled in any classes: “You are not enrolled in any classes right now.”
NOTE: You must use the variables included in the code snippet get credit for this question.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int creditHours;
int fees = 0;
Scanner myScanner = new Scanner(System.in);
System.out.print("Please enter the number of credit hours you are taking this term: "); creditHours = myScanner.nextInt();
myScanner.close();
//YOUR CODE GOES HERE
} }
Break the Problem Down
Answer the following questions, then use the information to write your code.
What are the inputs in the pseudocode above? (INPUT)
What are we storing in the pseudocode above? (MEMORY)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 2: Block Tuition
The cost of KSU’s tuition is determined by the number of credit hours a student enrolls in.
Using the chart below, write a conditional statement (ONLY) that sets the value of a tuition variable to what that student will owe.
NOTE: For this problem you can assume that all students are enrolled in a minimum of 12 hours.
Number of Credit Hours 12
13
14
15 or more
Cost (in USD) $2224 $2410 $2595 $2718
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 3: Class Standing
Undergraduate students will be classified based on the number of earned institutional hours.
• Freshman:
• Sophomore:
• Junior:
• Senior:
0 - 29 hours
30 - 59 hours 60 - 89 hours
90 hours or more
Write a complete program that prompts the user for the number of credit hours they have completed. Write a conditional statement that prints out their class standing based on the information they provided.
Sample Output
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
Please enter the number of credit hours you have earned: 29 You are a freshman.
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 4: Maximum Course Load
KSU’s policy on maximum course loads during the academic year is as follows:
A student in good standing may register for up to 18 hours. The Registrar may approve up to 21 hours for students with an institutional GPA of 3.5 or higher. Students
Write a complete program that prompts the user for the number of credit hours they have signed up for. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy. Once the maximum number of hours is determined, display a message to the user that states “You may enroll in X credit hours this semester.” where X is the number of credit hours determined by your program.
Sample Output
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
Please enter your GPA: 3.75
You may enroll in up to 21 credit hours this semester.
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 5: First-Year Seminar
All first-year full-time students entering Kennesaw State University with fewer than 15 semester hours are required to complete a First-Year Seminar. Students with 30 or more credit hours are not eligible to enroll in a First-Year Seminar.
Write a complete program that prompts the user for the number of credit hours they have completed. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy.
When you run your program, it should display one of the following messages to the screen:
• You must enroll in First-Year Seminar.
• You do not have to take First-Year Seminar.
• You are not eligible for First-Year Seminar.
Sample Output
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
Enter the number of credit hours have you completed: 30
You are not eligible for First-Year Seminar.
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
View More
2.1) Employees in 2012 paid 4.2% of their gross wages towards social security (FICA tax), while employers paid another 6.2%.
...
ers paid another 6.2%. How much will someone earning $34,000 a year pay towards social security out of their gross wages?
2) The population of a town increased from 3350 in 2005 to 4800 in 2010. Find the absolute and relative (percent) increase.
3)A company's sales in Seattle were $400,000 in 2012, while their sales in Portland were $295,000 for the same year. Complete the following statements:
a. Seattle's sales were
% larger than Portland's.
b. Portland sales were
% smaller than Seattle's.
c. Portland sales were
% of Seattle's.
4) A store has clearance items that have been marked down by 55%. They are having a sale, advertising an additional 30% off clearance items. What percent of the original price do you end up paying?
5) A friend has a 83% average before the final exam for a course. That score includes everything but the final, which counts for 15% of the course grade.
What is the best course grade your friend can earn?
%
What is the minimum score your friend would need on the final to earn a 75% for the course?
%
Give answers accurate to at least one decimal place.
6) A car is driving at 50 kilometers per hour. How far, in meters, does it travel in 3 seconds?
meters
Give your answer to the nearest meter.
View More
5.I need assistance with how to compare the culture of the Anglo-Saxons to the culture that can be found in
...
nd in a modern television show. I am looking for something outside of the box, and would especially like to compare cultures between the Anglo-Saxons and the ways of life that can be found in the show Avatar: The Last Airbender. Sadly, I'm having a hard time finding relations other than the hardships of banishment. If there is a writer that could offer up further potential comparisons or how I can further elaborate on the similarity of banishment between the two subjects, I believe I will be able to complete my essay much more efficiently.
View More
6.I need your help in order to complete the following assignments in relation to Economics under MBA program.
1. Write 1000
...
rogram.
1. Write 1000 word essay on the contribution of the concept of economic calculation to understand the limits of the corporation and the structure of governance.
2. Write a 1000 word essay on the role of entrepreneur and entrepreneurial discovery.
3. Write a 1000 word essay on how the heterogeneity of capital and risk affect the organization of business.
These are the assignments, the deadline set on 26.02.2018 (Monday Noon). It must be plagiarism free with APA format and citation style.
Thank you so much for your help in advance.
View More