NEW
Font size
WorksheetsLesson 1 - Python introduction,variable & datatypes
Total questions: 10
Worksheet time: 5mins
What is data ?
internet data
some of the information
every information
nothing
Which symbol is used to write comment into the python file ?
#
//
"
'
Which operator is used to storing the data into the variable ?
==
=
is
keep
List the two Boolean data’s ?
0 and 1
True and 0
1 and False
True and False
Which function is used to display the content on the screen from the variable ?
show()
display
print()
none
What is the output of the following statement. ?
9_ah = “akash”
Print(9_ah)
akash
9_ah
Error
none
What do you mean by case sensitive means ?
A and a is same
A and a is not same
A and B is same
A and b is same
Which of the following are not the strings in python ?
1) “ “ 2) “akansha” 3) “””rohima””” 4) sakshi 5) ‘sarvan” 6) ‘6’
1 and 3
4 and 5
2 and 4
4 and 6
In python real numbers are termed as ?
real
fraction
float
none
What happens when we assign a different data into the previously declared variable ?
New data removed
previous data removed
new and previous data removed
nothing
