0% found this document useful (0 votes)
2 views1 page

Problem Sets 1

The document outlines three problem sets for Python programming tasks. Problem 1 involves computing a student's average grade from three subjects, Problem 2 focuses on calculating total household expenses for grocery items, and Problem 3 requires determining an employee's total salary based on daily wage and days worked. Each problem specifies user input requirements and the expected output format.

Uploaded by

wincabrigas
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Problem Sets 1

The document outlines three problem sets for Python programming tasks. Problem 1 involves computing a student's average grade from three subjects, Problem 2 focuses on calculating total household expenses for grocery items, and Problem 3 requires determining an employee's total salary based on daily wage and days worked. Each problem specifies user input requirements and the expected output format.

Uploaded by

wincabrigas
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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.

You might also like