Project Set-up and Turn-in Instructions: Create one Visual Studio Solution and add each of the
following Parts as a separate project within this Solution. Zip the entire folder and upload the
resulting zip file to Blackboard.
Part 1:
In order for exercise to be beneficial to the cardiovascular system, the heart rate (number of heart beats
per minute) must exceed a value called the training heart rate (THR). A person’s THR can be calculated
from his age and resting heart rate as follows:
• Calculate the maximum heart rate as 220 – age
• Subtract the resting heart rate from the maximum heart rate.
• Multiple the result in the above step by 60%, and then add the resting heart rate.
Using ASP .NET, C# and HTML5, design and build a webpage that calculates and displays THR given the
age and resting heart rate as inputs (using text boxes)
Part 2:
Using ASP .NET, C# and HTML5, design and build a webpage that calculates rental car charges. The user
selects the type of vehicle from a drop down list and enters the number of days in a text box. Your
webpage should read this input and calculate and display the rental car charges (days * daily rate).
Vehicle Type Daily Rate
Economy 24.99
Compact 29.99
Intermediate 34.99
Standard 44.99
Full Size 49.99
Part 3:
Using ASP .NET, C# and HTML5, design and build a webpage that calculates letter grades for students.
The user enters the student’s name, total quiz score (q), total assignment score (a), midterm exam score
(m), and final exam score (f). Your webpage should read all the input, calculate the average score,
compute the letter grade and display the average score and the letter grade.
average score = (q * 15%) + (a * 40%) + (m * 20%) + (f * 25%)
Use a straight grading scale for assigning letter grades.
Part 4:
Using ASP .NET, C# and HTML5, build a webpage that computes the federal income tax based on the
taxable income. The user will be asked to input annual income and number of dependents via text
boxes. The user receives a $ 1,000 deduction for every dependent. Calculate the taxable income using
the following formula: taxable income = annual income – (number of dependents * 1000). The webpage
should calculate the tax using the chart given below and display it. The tax is calculated by multiplying
the taxable income with the tax rate.
Taxable Income range ($) Tax Rate (%)
> 450,000 39.6
> 378,000 and <= 450,000 33
> 192,000 and <= 378,000 28
> 71,000 and <= 192,000 25
> 15,000 and <= 71,000 15
<= 15,000 10
Part 5:
Using ASP .NET, C# and HTML5, implement a web page that allows a user to add an item to a shopping
cart by selecting the item from a drop down list and entering the quantity in a text box. Clicking the
“Add to Shopping Cart” should add the selected item to the shopping cart. The user should be allowed
to enter as many different items as he/she wants. On clicking the “Checkout” button, your web page
should display the total cost of all the items. Use the following items and unit prices – LEAN IN ($ 19.99)