What will the variable 'x' hold after this code executes?
x = 5 x %= 2
2.5
1
2
5
What is the correct way to print 'Hello, World!' in Python?
System.out.println('Hello, World!')
console.log('Hello, World!')
echo 'Hello, World!'
print('Hello, World!')
Which of the following is NOT a valid variable name in Python?
variable_name
my_variable
variable123
123variable
What is the purpose of the '#' symbol in Python code?
To write a comment
To execute a command
To define a variable
To indicate a code block
What will the following Python code snippet print?
def greet(name): print(f"Hello, {name}!") greet("Alice")
greet("Alice")
Hello, name!
Hello, Alice!
An error message.
How many times will the following loop iterate?
for i in range(3, 8): print(i)
3
8
7
What is the purpose of the return statement in a Python function?
return
To terminate the execution of the entire program.
To end the execution of the function and optionally send a value back to the caller.
To print a value to the console.
To declare a new variable inside the function.
What will this code print?
for i in range(3): for j in range(2): print('*', end='') print()
** ** **
What is the correct way to get user input and store it in a variable named 'name'?
print('Enter your name:') = name
input('Enter your name:') = name
name = input('Enter your name:')
name = print('Enter your name:')
How can you retrieve the value associated with the key 'name' in a dictionary named 'my_dict'?
Both option1 and option3
my_dict.get('name')
my_dict.name
my_dict['name']