Flowchart
Psuedocode
Algorithm
All of the above
yes
no
machine dependent
none of the mentioned
my_string_1
1st_string
foo
_myvar
abc = 1,000,000
a b c = 1000 2000 3000
a,b,c = 1000, 2000, 3000
a_b_c = 1,000,000
__init__
in
it
on
/
//
%
None of the mentioned
7
1
0
5
Left to Right
Right to Left
Can’t say
27
9
3
Addition and Subtraction
Multiplication, Division and Addition
Multiplication, Division, Addition and Subtraction
Addition and Multiplication
Exponential
Addition
Multiplication
Parentheses
Lists
Dictionary
Tuples
Class
int
bool
void
None
round(45.8)
round(6352.898,2,5)
round()
round(7463.123,2,1)
float
dict
list
tuple
class
dictionary
X^y
X**y
X^^y
What will be the output of the following Python expression?
print(4.00/(2.0+2.0))
Error
1.0
1.00
What will be the value of X in the following Python expression?
x = 2+9*((3*12)-8)/10
30.0
30.8
28.4
27.2