CLASS 11 pt2
CLASS 11 pt2
6. a = 60
b = 10
c = 85/b + a
print (c)
7. a=3
b=4
c = a ** b + 5
print (c)
8. b = 89
a = 78
c = (a < = b)
print (c)
Section C
Question No. 21 to 25 are based on the given text. Read the text carefully and [5]
answer the questions:
Data Type The data that needs to be processed by a computer can be in various
form. It can be numbers with or without decimal places or it can be just a single
character or a sequence of characters. The data to be handled by the computer can
also be in group. All computer programming languages support wide variety of data
that can be stored, processed and manipulated in a computer system. Data type is a
term that is used to show the kind of data values or the type of data that is expected to
be handled.
Python has five standard data types:
Number, strings Lists, tuples and Dictionaries.
21 Which data type contains only numeric value in Python?
22 Which term is used to show the kind of data values?
23 Tuples are defined by which type of bracket?
24 In Python, what are the use of data types?
25 Integer data type can be represented by which term(s)?