Channel Avatar

CODESTUDIO @[email protected]

2.4K subscribers - no pronouns :c

Welcome to CODESTUDIO! 🚀 Hi, I'm Balkrishna, a software en


Welcoem to posts!!

in the future - u will be able to do some more stuff here,,,!! like pat catgirl- i mean um yeah... for now u can only see others's posts :c

CODESTUDIO
Posted 2 months ago

What is the output of multiply = lambda a, b: a * b when multiply(3, 4) is called?

1 - 0

CODESTUDIO
Posted 2 months ago

Which of the following is a correct way to import a module?

1 - 0

CODESTUDIO
Posted 2 months ago

What is the keyword used to define a function in Python?

0 - 0

CODESTUDIO
Posted 2 months ago

What will lambda x: x + 2 return when called with x=5?

1 - 0

CODESTUDIO
Posted 2 months ago

What happens in this loop?

for num in range(1, 6):
if num == 3:
continue
print(num)

1 - 0

CODESTUDIO
Posted 2 months ago

What will be printed by this code?

for num in range(1, 6):
if num == 4:
break
print(num)

1 - 0

CODESTUDIO
Posted 2 months ago

What is the output of the following while loop?

x = 1
while x < 4:
print(x)
x += 1

0 - 0

CODESTUDIO
Posted 2 months ago

What will be the output of the following Python code?

for i in range(3):
print("Hello")

0 - 0

CODESTUDIO
Posted 2 months ago

Which of the following is a valid way to declare a variable in Python?

1 - 0

CODESTUDIO
Posted 2 months ago

How do you check if Python is installed on your system?

22 - 0