What will be the output of the following Python expression?
print(4.00/(2.0+2.0))
What will be the output of the following Python expression?
print(4.00/(2.0+2.0))
State true or false
Code written in python is difficult to maintain.
State true or false
Code written in python is difficult to maintain.
State true or false
In python, Variable names can start with numbers.
State true or false
In python, Variable names can start with numbers.
Algorithm should be
Algorithm should be
Which is the correct operator for x power to y ?
Which is the correct operator for x power to y ?
State true or false
Python has been drived from C.
State true or false
Python has been drived from C.
What will be the value of X in the following Python expression?
X = 2+9*((3*12)-8)/10
What will be the value of X in the following Python expression?
X = 2+9*((3*12)-8)/10
What is the output of print 0.1 +2 == 0.5 ?
What is the output of print 0.1 +2 == 0.5 ?
State true or false
All spaces and tabs within a string are preserved in quotes.
State true or false
All spaces and tabs within a string are preserved in quotes.
Which among the following list of operators has the highest precedence?
+, -, **, %, /, <<, >>, |
Which among the following list of operators has the highest precedence?
+, -, **, %, /, <<, >>, |
Bitwise operator can be applied on which data type?
Bitwise operator can be applied on which data type?
What is the value of the following expression?
2+4.00, 2**4.0
What is the value of the following expression?
2+4.00, 2**4.0
which one of following is a graphical or symbolic representation of a process?
which one of following is a graphical or symbolic representation of a process?
What is the output of this code?
>>>int("30" + "40")
What is the output of this code?
>>>int("30" + "40")
What is the output of this expression , 3*1**3 ?
What is the output of this expression , 3*1**3 ?