Problem Sets: 1 - 3
Problem 1: Student Grade Computation
A BSIT student is enrolled in three subjects: Mathematics, Science, and English. The instructor wants to
compute the student’s academic performance using a simple Python program. The program should ask
the user to input the student’s name and the grades for the three subjects. After receiving the inputs,
the program must convert the grades into numerical values, compute the average grade, and display the
student’s name, the individual subject grades, and the computed average clearly on the screen.
Problem 2: Household Expense Calculation
A household tracks its weekly expenses to manage its budget effectively. Using Python, create a program
that asks the user to input the cost of three grocery items purchased during the week. The program
should convert the inputs into numerical values, compute the total cost of all items, and display each
item cost along with the total amount spent.
Problem 3: Employee Salary Computation
An employee is paid based on a fixed daily wage. To determine the total salary for a given period, a
Python program is needed. The program should ask the user to input the employee’s daily wage and the
number of days worked. After converting the inputs into numerical values, the program must compute
the total salary and display the daily wage, number of days worked, and the total salary earned.