How do you access the first item in a tuple named my_tuple?

  • my_tuple(0)
  • my_tuple<0>
  • my_tuple[0]
  • my_tuple{0}
To access the first item in a tuple, you use square brackets and specify the index. For example, my_tuple[0] retrieves the first item.

When trying to execute an expression like obj1 * obj2 for custom objects, Python internally calls _______.

  • __mul__
  • __mult__
  • __multiply__
  • __product__
When you attempt to execute an expression like obj1 * obj2 for custom objects, Python internally calls the __mul__ method. Implementing this method allows you to define how the multiplication operation behaves for your objects.

What could be the possible reasons for a init.py file being empty in some packages?

  • It indicates a poorly designed package.
  • It prevents the package from being recognized by Python.
  • It signifies that the package has no submodules.
  • It's a common convention, but it's not necessary.
An empty init.py file in a package signifies that the package has no submodules. It's not required, but it helps Python recognize the directory as a package, enabling relative imports.

A colleague is trying to run a Python 2 script in a Python 3 environment, and the script fails due to a syntax error in the print statement. What would be the likely cause?

  • Python 2 has a different file encoding
  • Python 2 requires a __future__ import
  • Python 2 uses print as a function
  • Python 2 uses print as a statement
The likely cause of the syntax error is that Python 2 uses print as a statement, while Python 3 uses it as a function. In Python 3, you need to use parentheses, like print("Hello, World!"), whereas in Python 2, you can use print "Hello, World!".

Functions that return an iterator yielding items instead of a list are called _______.

  • Decorators
  • Generators
  • Lambda Functions
  • List Comprehensions
Functions that return an iterator yielding items instead of a list are called 'Generators'. Generators are used to generate values on-the-fly and are memory-efficient.

How can you embed a docstring within a Python function?

  • By adding a leading hyphen
  • By enclosing in {} braces
  • By prefixing with '#'
  • By using triple quotes
In Python, docstrings are embedded within functions using triple quotes (''' or """). They provide documentation and can be accessed using .__doc__.

The operator ^ in Python is used for _______.

  • Bitwise XOR
  • Exponentiation
  • Logical NOT
  • String Concatenation
The ^ operator in Python is used for Bitwise XOR, which performs a bitwise exclusive OR operation between two numbers. It flips bits where both numbers have 1s.

If an elif block gets executed in a series of if, elif, and else blocks, what happens to the subsequent elif and else blocks?

  • They are skipped and not evaluated.
  • They are still evaluated, and their conditions are checked.
  • They raise an exception.
  • They throw a warning but continue execution.
If an 'elif' block gets executed in a series of 'if', 'elif', and 'else' blocks, the subsequent 'elif' and 'else' blocks are skipped and not evaluated. This behavior ensures that only one block is executed.

Which method is used to insert an item at a specified index in a list?

  • add()
  • append()
  • extend()
  • insert()
The insert() method is used to insert an item at a specified index in a list. It takes two arguments: the index where the item should be inserted and the item itself.

A function in Python can return multiple values using a _______.

  • list
  • return statement
  • tuple
  • yield statement
In Python, a function can return multiple values by using a tuple. A tuple is an ordered, immutable collection that allows you to return multiple values as a single object.