Python Chapter 2 Assignment - Ur Engineering Friend

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

Python Programming

Assignment – 2nd

1. Define operators.
2. List any four types of operators. Explain any two.
3. List out any 5 arithmetic operators.
4. Write a program for arithmetic operations
5. In 5th semester , Pramesh and satish got marks as follows:

Pramesh Satish
Advance Java – 65 Advance Java – 56
Environmental Studies – 68 Environmental Studies – 69
Operating System – 59 Operating System – 67
Software Testing – 55 Software Testing - 59

Calculate the total marks , percentage and display the result . Also
display who was the topper of 5th semester from both of friend.
6. Write a program to demonstrate the use of relational operator.
7. Write a program to demonstrate the use of Identity operators.
8. What is the difference between operand and operator. Explain with an
example
9. What are the different logical operators in python?Explain with an
example.
10. Write a program to find out the highest number between 3 numbers. Take
input from user.
11. Write a program to check whether the given number is positive or
negative. Take input from user.

MSBTE NEXT ICON FOUNDATION COURSE YOUTUBE CHANNEL – UR ENGINEERING FRIEND


12. Write a program to print fibonacci series in python . Write down the
comments also .
13. Explain conditional statement.
14. Explain if.else with the help of an example.
15. Write a program to check whether a number is positive or negative or
zero.
16. Write a program to check whether a number is odd or even.
17. Write a program to check greater number between two numbers.
18. Write a program to check greatest number between 3 numbers.
19. Write a program to print fibonacci series .
20. Write a program to check whether a number is prime or not.
21. Take values of length and breadth of a rectangle from user and check if it
is square or not.
22. Take input of age of 3 people by user and determine oldest and youngest
among them.
23. A student will not be allowed to sit in exam if his/her attendence is less
than 75%.
Take following input from user:
Number of classes held
Number of classes attended.
And print percentage of class attended
Is student is allowed to sit in exam or not?
24. A shop will give discount of 10% if the cost of purchased quantity is
more than 1000.
Ask user for quantity
Suppose, one unit will cost 100.
Judge and print total cost for user.
25. Write a program to check whether a year is leap year or not.
26. Write a program to check whether a person is eligible for voting or not?

MSBTE NEXT ICON FOUNDATION COURSE YOUTUBE CHANNEL – UR ENGINEERING FRIEND


27. Write a program to check whether a given character is vowel or not.

28. Write a program to print first 10 natural number.


29. Write a program to print first 10 even numbers.
30. Write a program to print first 10 odd numbers.
31. Write a program to print first 10 even numbers in reverse order.
32. Write a program to print table of a number accepted from user.
33. Write a program to display product of the digits of a number
accepted from the user.
34. Write a program to find the factorial of a number.
35. Write a program to find the sum of the digits of a number accepted
from user
36. Write a program to check whether a number is prime or not.

37. Write the output of the following code :

x=5
while(x<15):
print(x**2)
x+=3
a=7
b=5
while(a<9):
print(a+b)
a+=1
b=5
while(b<9):
print("H")

MSBTE NEXT ICON FOUNDATION COURSE YOUTUBE CHANNEL – UR ENGINEERING FRIEND


b+=1
b=15
while(b>9):
print("Hello")
b=b-2
x=15
while(x==15):
print("Hello")
x=x-3
x = "123"
for i in x:
print("a")
i=9
while True:
if i%3==0:
break
print("A")
a=5
while(a<=10):
print("a")
a+=1
i=0
while i<3:
print(i)
i=i+1
else:
print(7)
i=0

MSBTE NEXT ICON FOUNDATION COURSE YOUTUBE CHANNEL – UR ENGINEERING FRIEND


while i<3:
print(i)
i=i+1
print(0)
i=2
for x in range(i):
i+=1
print(i)
print(i)
i=2
for x in range(i):
x+=1
print(x)
print(x)
i=2
for x in range(i):
x+=1
print(x)
print("x")
i=100
while i<57:
print(i)
i+=5

MSBTE NEXT ICON FOUNDATION COURSE YOUTUBE CHANNEL – UR ENGINEERING FRIEND

You might also like