Question
CSE_120 Sir_it_is_urgent.do_fast._Please_solve_this_code_in_python3_paste_with_proper_intendent_blocks_bypressing(CTRL+SHIFT+V),Also_please_provide_code_screenshot,_Thank_you. Do_not_need_comments. SKIP_BUILT_IN_FUNCTIONS. Just_give_me_solution_as_fast_as_possible._I_am_running_out_of_time._Attach_a_screenshot_with_yoursolve. Question-2: Suppose, you are given the following dictionary where the scholarship percentage and corresponding cgpa range is given. percentage =
CSE_120
Sir_it_is_urgent.do_fast._Please_solve_this_code_in_python3_paste_with_proper_intendent_blocks_bypressing(CTRL+SHIFT+V),Also_please_provide_code_screenshot,_Thank_you.
Do_not_need_comments. SKIP_BUILT_IN_FUNCTIONS. Just_give_me_solution_as_fast_as_possible._I_am_running_out_of_time._Attach_a_screenshot_with_yoursolve.
Question-2: Suppose, you are given the following dictionary where the scholarship percentage and corresponding cgpa range is given. percentage = {100: (4.00, 4.00), 75: (3.95, 3.99), 50: (3.90, 3.94), 25: (3.85, 3.89), 10: (3.80, 3.84), 0: (0.00, 3.79)}
For example, if the cgpa is 4.00, then the student will receive a full free scholarship on tuition fees; if the cgpa ranges between 3.95 to 3.99, then the student will receive 75% scholarship and so on. Additionally, you are given the information that the tuition fee per credit is 6600/- and there is an additional fee of 9500/- that should be paid by every student (whether s/he is a scholarship holder or not). Your task is to take two inputs from the user (the current cgpa of a student & credits taken this semester) and calculate the scholarship status & total amount to be paid by the student. [To check the scholarship eligibility status of the student, you must have to use the given dictionary and apply tuple unpacking.] ================================================ Sample Input 1: 3.96 15 Sample Output 1: You will receive a 75 % scholarship in the upcoming semester. Without scholarship tution fees: 99000 With scholarship tution fees: 24750.0 Total amount: 34250.0 BDT
Explanation1: Tuition Fee = 6600 * 15 = 99000 Final Amount = 99000 - (75% of 99000) + 9500 = 34250.0 ================================================ Sample Input 2: 2.75 12 Sample Output 2: You will receive a 0 % scholarship in the upcoming semester. Without scholarship tution fees: 79200 With scholarship tution fees: 79200.0 Total amount: 88700.0 BDT
Explanation2: Tuition Fee = 6600 * 12 = 79200 Final Amount = 79200 + 9500 = 88700.0
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started