A ____ is a special type of binary tree where each node has a higher (or equal) value than its children.

  • AVL Tree
  • Binary Search Tree (BST)
  • B-Tree
  • Red-Black Tree
A Binary Search Tree (BST) is a special type of binary tree where each node has a higher (or equal) value than its children. This property allows for efficient searching, insertion, and deletion of elements.

A ____ is a linear data structure where the elements are arranged in a circular fashion.

  • Linked List
  • Queue
  • Ring Buffer
  • Stack
A "Ring Buffer" (or Circular Buffer) is a linear data structure where elements are stored in a circular manner. It has fixed-size storage and efficiently manages data by overwriting old data when full.

A ____ is a data structure that stores elements in a linear sequence but allows additions and removals only at the start.

  • Array
  • Linked List
  • Queue
  • Stack
A Stack is a data structure that follows the Last-In-First-Out (LIFO) principle, meaning the last element added is the first to be removed. It allows additions and removals at the start, making it suitable for managing function calls, undo functionality, and more.

A ____ in Python is a collection of key-value pairs, where the keys must be immutable.

  • Dictionary
  • List
  • Set
  • Tuple
In Python, a dictionary is a collection of key-value pairs, where the keys must be immutable (and usually unique). Tuples are immutable, making them suitable for use as dictionary keys.

A ____ algorithm guarantees to run in the same time (or space) for any input of the same size.

  • Deterministic
  • In-Place
  • Non-Deterministic
  • Stable
A Deterministic algorithm guarantees to run in the same time (or space) for any input of the same size. It is predictable and has consistent performance.

How can you secure sensitive information, like API keys, in a Flask or Django application?

  • Embed them directly in the code
  • Encrypt them using a reversible algorithm
  • Publish them in the application's source code
  • Store them in environment variables
Sensitive information, like API keys, should be stored in environment variables for security. Embedding them directly in the code or publishing them in the source code can expose them, and reversible encryption is not recommended.

To iterate over a list and its indices simultaneously, you can use the ____ function.

  • enumerate
  • for
  • index
  • range

The enumerate function is used in Python to iterate over a list and its corresponding indices. It returns pairs of index-value tuples, making it convenient for tasks that require both the index and the value during iteration.

The ____ keyword is used to create a block of code that can handle exceptions in Python.

  • catch
  • finally
  • throw
  • try

The try keyword is used in Python to create a block of code that might raise exceptions. It is followed by an associated except block that catches and handles those exceptions. This combination allows for controlled error handling in Python.

How can you create an else block that executes after a for loop, but only if the loop completed normally (i.e., did not encounter a break statement)?

  • Place the code after the "for" loop without any specific block.
  • Use the "except" block
  • Use the "finally" block
  • You cannot create an "else" block for this purpose in Python.

In Python, you can create an "else" block that executes after a for loop but only if the loop completed normally (without encountering a "break" statement). To do this, you can use the "else" block immediately following the "for" loop. If the loop completes normally, the "else" block will execute.

What is the output of the following Python code snippet: print(all([True, False, True]))?

  • Error
  • FALSE
  • SyntaxError
  • TRUE

The all() function in Python returns True if all elements in the iterable are True. In this case, it returns False because one of the elements (False) is not True.

How can you create a custom exception class in Python?

  • class MyException(Exception):
  • define MyException as a function
  • import customexception
  • MyException extends Throwable

To create a custom exception class in Python, you should define a new class that inherits from the built-in Exception class (or one of its subclasses). This allows you to raise and catch instances of your custom exception when necessary.

How would you create a try block that catches both ValueError and TypeError exceptions?

  • try: catch ValueError, TypeError:
  • try: except (ValueError, TypeError):
  • try: except Exception as e:
  • try: except ValueError, TypeError:

To catch multiple exceptions like ValueError and TypeError in Python, you should use the except (ValueError, TypeError): syntax. This allows you to handle multiple exception types in a single except block.