11 Ip
11 Ip
OR
Which data type will be used to represent the following data
values?
(i) Number of days in a month
(ii) Resident of India or not
(iii)Phone number
(iv) Price of book
(v) Area of a circle
(vi) Name of an employee
(v) Name the first binary programmable computer based on Von 1
Neumann architecture.
OR
Give examples of any two Web Browsers.
number=input(“Enter Number”)
changenum=number+10
print(changenum)
(ii) What will be the output given by following code? 1
value1 =”Avoid”
value2 = “Crowded”
print(value1,”going to”,value2,”places”)
(iii) Identify the error in the following Python code. 1
name=”Imran”
print(“Good Morning”,name)
(iv) What will be the output given by following python code 2
statements ?
(i) print(17 % 5)
(ii) print(25%5 + 7 >= 9//2)
(iii)print(“Hello”+”World”)
(iv) print( 6**2 > 32//2 and 5**2==25)
(v) Write a Python Program which input five numbers and display 3
their average.
(vi) Write a Python Program to print following Pattern using print 2
statement.
H
HE
HEL
HELL
HELLO