Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

IP WORKSHEET -2 XI

1.Suraj is looking for his dream job but has some restrictions. He loves Delhi and would take a job there if he is
paid over Rs.40,000 a month. He hates Chennai and demands at least Rs. 1,00,000 to work there. In any another
location he is willing to work for Rs. 60,000 a month.
The following code shows his basic strategy for evaluating a job offer. Code:
pay= _________ location= _________
if location == "Mumbai":
print ("I’ll take it!") #Statement 1
elif location == "Chennai":
if pay < 100000:
print ("No way") #Statement 2
else: print("I am willing!") #Statement 3
elif location == "Delhi" and pay > 40000:
print("I am happy to join") #Statement 4
elif pay > 60000:
print("I accept the offer") #Statement 5
else: print("No thanks, I can find something better")#Statement 6
On the basis of the above code, choose the right statement which will be executed when different inputs for pay and
location are given.
I.Input: location = "Chennai”, pay = 50000
a. Statement 1 b.Statement 2 c.Statement 3 D.Statement 4
ii. Input: location = "Surat" ,pay = 50000
a. Statement 2
b. Statement 4
c. Statement 5
d. Statement 6
iii. Input- location = "Any Other City", pay = 1
a Statement 1
b. Statement 2
c. Statement 4
d. Statement 6
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.

3.Which of the following makes available its source code


a. Freeware b. Free software c. OSS d. FLOSS
4. Python was developed by ______.
a. charles babbage B. Guido van rossum C. Tim berners lee D.Robert E.Kahn
5. Which of the following operator is floor division?
A.+ b./ c.// d.>
6.Find the output of following code:
x =8
y =2
x +=y
y- =x
print(x,y)
7.Write a python code to calculate and display the selling price of an item (cost price and profit to be accepted by the
user).

You might also like