NEW
Font size
WorksheetsData Type- XI
Total questions: 10
Worksheet time: 5mins
Which of these is not a core data type?
string
lists
tuples
class
What is the maximum possible length of an identifier?
31 characters
63 characters
79 characters
none of the mentioned
All keywords in Python are in
lower case
UPPER CASE
Capitalized
None of the above
Which of the following is not valid variable name in Python?
_var
var_name
11var
var11
Which statement is correct?
List is immutable && Tuple is mutable
List is mutable && Tuple is immutable
Both are Mutable.
Both are Immutable
Which of the following function is used to know the data type of a variable in Python?
datatype()
typeof()
type()
vartype()
Which one of the following has the highest precedence in the expression?
Addition
Multiplication
Exponential
Parentheses
What will be the output of 7^10 in python?
13
15
2
None of these
How to get last element of list in python? Suppose we have list with name arr, contains 5 elements.
arr[0]
arr[5]
arr[last]
arr[-1]
Which Of The Following Statements Are Correct?
A reference variable is an object.
A reference variable refers to an object.
An object may contain other objects.
An object can contain the references to other objects.
