Page 96 - IPP-11
P. 96
CHAPTER: PYTHON PROGRAMMING FUNDAMENTALS
1. IndiaSells is an India-based cargo company that deals with the export and ale of various goods within the
country and across the globe. To do business analysis of the day-to-day transactions, they have hired a
programmer to develop a computerized system for the same.
Write a Python code that accepts cost of goods sold (cogs), revenue generated, operating costs (oc), and
prints gross profit, net profit and net profit percentage. [Net profit = Revenue – cogs – oc]
Ans.
Supplement – Informatics Practices with Python–XI
2. Gurukul Vidyapeeth is a reputed institution in the field of academics and extra-curricular activities.
Every year, with the commencement of the new session, it hikes fee by 10% for all the students which
was manually done till date and required enormous efforts on the part of the office staff. To solve this
problem, develop a Python program that calculates this 10% fee hike every year automatically after
obtaining the basic fee amount from the user and displays it to the parents of the students enrolled with
the institute.
Ans.
C.2