What will be the output of the following code snippet? π₯οΈπ€π§
--> print(2**3 + (5 + 6)**(1 + 1))
--> print(2**3 + (5 + 6)**(1 + 1))
Anonymous Quiz
64%
129
8%
8
14%
121
14%
None of the above
What will be the output of this program? -- print(int(6 == 6.0) * 3 + 4 % 5) π»π€π§
Anonymous Quiz
19%
22
28%
18
15%
20
38%
7
What will be the output of this program?π§ π₯οΈπ€
--> print(max("zoo 145 com"))
--> print(max("zoo 145 com"))
Anonymous Quiz
30%
142
21%
122
9%
a
39%
z
What will be the output of this program ?π€π§ π₯οΈ
--> print("java", 'point', sep='2')
--> print("java", 'point', sep='2')
Anonymous Quiz
35%
javapoint2
10%
japoint
49%
java2point
5%
javapoin2
What will be the output of the following code snippet?π₯οΈπ§ π€
a = [1, 2] print(a * 3)
a = [1, 2] print(a * 3)
Anonymous Quiz
23%
Error
6%
[1,2]
6%
[1,2,1,2]
65%
[1,2,1,2,1,2]
What will be the output of the following code snippet?π€π₯οΈπ§
-> s = {1, 2, 3, 3, 2, 4, 5, 5} print(s)
-> s = {1, 2, 3, 3, 2, 4, 5, 5} print(s)
Anonymous Quiz
32%
{1,2,2,3,3,4,5,5}
53%
{1,2,3,4,5}
4%
{1,5}
12%
None of the above
Hello Friends, do you want paid Internship with stipend upto Rs. 15k or $200 per month?π€π§
Then Register here: https://bit.ly/34zUjnQ
Then Register here: https://bit.ly/34zUjnQ
Guys this don't take this lightly, its a Golden opportunity & also you will be getting Free Amazon Voucher worth Rs. 1000!π±
what datatype are the *args stored, when passed into a function? π§ π€π₯οΈ
Anonymous Quiz
32%
Lists
32%
Tuples
22%
Dictionaries
14%
None
What is the output of the following code? π€π₯οΈπ§
eval(''1 + 3 * 2'')
eval(''1 + 3 * 2'')
Anonymous Quiz
9%
'1+6'
9%
'4*2'
32%
'1+3*2'
49%
7
Want to learn Python for free?π§ π»
Join free Python Masterclass!π
https://www.madridsoftwaretrainings.com/python-course-training-in-delhi
Join free Python Masterclass!π
https://www.madridsoftwaretrainings.com/python-course-training-in-delhi
What will be the output of this function? π€π₯οΈπ§
all([2,4,0,6])
all([2,4,0,6])
Anonymous Quiz
28%
False
39%
True
14%
0
18%
None
What will be the output of this program?π§ π€π₯οΈ
int1 = 0b0010 print(int1)
int1 = 0b0010 print(int1)
Anonymous Quiz
32%
0b0010
33%
2
22%
NameError: name '0b0010' is not defined
13%
SyntaxError
Forwarded from Codes Learningπ§ ππ»
Your dream career is just a few steps away!π§
π±β’ Get upto 100% Scholarship on India's highest rated coding courses!
π»β’ Learn Data Structures, C++, Java, Python, Web Dev, Data Science and other highly sought after skills from IIT and Stanford Alumni.
πβ’ Get Interview preparation book & Christmas hampers worth Rs. 2000 for free on course enrollment!
Apply Now : https://bit.ly/3LAZSmO
Use code : INSTA50 to get 50% off and then you have to pay only Rs. 48, not even $1 & Rs 50π³π
π±β’ Get upto 100% Scholarship on India's highest rated coding courses!
π»β’ Learn Data Structures, C++, Java, Python, Web Dev, Data Science and other highly sought after skills from IIT and Stanford Alumni.
πβ’ Get Interview preparation book & Christmas hampers worth Rs. 2000 for free on course enrollment!
Apply Now : https://bit.ly/3LAZSmO
Use code : INSTA50 to get 50% off and then you have to pay only Rs. 48, not even $1 & Rs 50π³π
PVM is often called _________?π§ π€π₯οΈ
Anonymous Quiz
11%
Python interpreter
4%
Python compiler
18%
Python volatile machine
67%
Portable virtual machine
Codes Learningπ§ ππ»
Your dream career is just a few steps away!π§ π±β’ Get upto 100% Scholarship on India's highest rated coding courses! π»β’ Learn Data Structures, C++, Java, Python, Web Dev, Data Science and other highly sought after skills from IIT and Stanford Alumni. πβ’ Getβ¦
Last Few hours are left, after that Registrations for International Coding Scholarship Program will be closedπ§ π°
What is the maximum possible length of an identifier?π€π§ π₯οΈ
Anonymous Quiz
20%
31
27%
63
19%
79
34%
None of the above
Which of the following statements is valid for "if statement"?π§ π₯οΈπ€
Anonymous Quiz
62%
if f >= 12:
24%
if (f >= 122)
10%
if (f => 1222)
4%
if f >= 12222
Which of the following blocks allows you to test the code blocks for errors?π₯οΈπ§ π€
Anonymous Quiz
29%
except block
52%
try block
10%
finally block
9%
None of these
What will be the output of the following code snippet? π§ π₯οΈπ€
- example = ["Sunday", "Monday", "Tuesday", "Wednesday"]; - print(example[-3:-1])
- example = ["Sunday", "Monday", "Tuesday", "Wednesday"]; - print(example[-3:-1])
Anonymous Quiz
44%
['Monday', 'Tuesday']
13%
['Sunday', 'Monday']
18%
['Tuesday', 'Wednesday']
24%
['Wednesday', 'Monday']