Which of the following is the correct way to create a list in Python?

  • list = "1, 2, 3, 4"
  • list = (1, 2, 3, 4)
  • list = [1, 2, 3, 4]
  • list = {1, 2, 3, 4}
The correct way to create a list in Python is by using square brackets, as shown in "list = [1, 2, 3, 4]". Square brackets denote a list in Python.

Which of the following is not a Python standard library?

  • math
  • numpy
  • os
  • stdlib
numpy is not a Python standard library; it's a third-party library commonly used for numerical and scientific computing. Python's standard libraries include os and math.

What is the primary use of the pass statement in Python?

  • To act as a placeholder
  • To indicate a successful run
  • To skip a loop iteration
  • To terminate the program
The primary use of the 'pass' statement in Python is to act as a placeholder. It does nothing when executed and is often used as a temporary placeholder for code that will be implemented later.

Which dictionary method provides a view on dictionary's items in the form of tuples?

  • dict.items()
  • dict.tuples()
  • dict.values()
  • dict.viewitems()
The dict.items() method returns a view object that displays a list of a dictionary's (key, value) tuple pairs, making it useful for iterating through a dictionary's items.

A colleague is seeing unexpected behavior in a function. The function uses a list as a default argument and modifies it. Every time the function is called without this argument, the list seems to retain its changes. What's the likely cause?

  • Caching of previous function calls
  • Incorrect usage of global variables
  • Python's behavior with mutable default arguments
  • The list is defined as a class attribute
The likely cause is Python's behavior with mutable default arguments. The list retains its changes because it's a mutable object shared among calls.

Which Python module provides functionality to read and write data in CSV format?

  • csv
  • dataio
  • table
  • textfile
The csv module in Python provides functionality for reading and writing data in CSV (Comma-Separated Values) format, making it a popular choice for working with spreadsheet-like data.

The file method _______ is used to obtain the current position of the file read/write pointer.

  • current_position()
  • file_position()
  • get_position()
  • tell()
The tell() method in Python's file handling is used to obtain the current position of the file read/write pointer. It returns an integer representing the current position in bytes. This is crucial when you want to navigate through a file or keep track of where you are when reading or writing data.

When iterating over a dictionary's items, each item is presented as a _______.

  • Key
  • Key-Value Pair
  • Tuple
  • Value
When iterating over a dictionary, each item is presented as a key-value pair (a tuple), where the key represents the dictionary's key, and the value represents the corresponding value associated with that key.

Which decorator in Python is commonly used to define a method as a class property getter?

  • @get
  • @getter
  • @method
  • @property
To define a method as a class property getter in Python, the @property decorator is commonly used. This decorator allows you to access a method like an attribute, making it a clean way to implement read-only properties in classes.

How can you determine the index of the first occurrence of value x in a tuple?

  • find(x)
  • first_index(x)
  • get_index(x)
  • index(x)
You can determine the index of the first occurrence of value x in a tuple using the index(x) method. It returns the index of the first occurrence of the specified value.