In what scenarios is linear search preferable over binary search?

  • Linear search is never preferable
  • When the array is large and sorted
  • When the array is large but not sorted
  • When the array is small or not sorted
Linear search is preferable over binary search in scenarios where the array is small or not sorted. In such cases, the simplicity of linear search can be more efficient than the overhead involved in binary search, especially for small datasets or unsorted arrays where the linear search can terminate as soon as the element is found.

You are designing a navigation system for a delivery service, where the delivery vans need to find the shortest path between various destinations. Would you choose Breadth-First Search (BFS) or Dijkstra's Algorithm for this scenario, and why?

  • Both are equally suitable
  • Breadth-First Search (BFS)
  • Dijkstra's Algorithm
  • Neither is suitable
Dijkstra's Algorithm would be more suitable for the scenario because it not only finds the shortest path but also considers the weights or distances between destinations. In a delivery service, the distances between locations (nodes) are likely to vary, making Dijkstra's Algorithm more appropriate than BFS, which does not consider edge weights.

Discuss a real-world scenario where topological sorting is used extensively, and explain its importance in that context.

  • Arranging files in a file system alphabetically.
  • Randomly arranging items in a list.
  • Scheduling tasks in a project management system to ensure dependencies are met.
  • Sorting elements in an array based on their values.
Topological sorting is extensively used in scheduling tasks in project management. It ensures that tasks are executed in the correct order based on dependencies, helping in efficient project completion. For example, if Task B depends on Task A, topological sorting ensures Task A is scheduled before Task B.

In a distributed computing environment, discuss how queues could be utilized for load balancing and task scheduling across multiple servers.

  • Assign tasks to servers in a sequential manner without using a queue.
  • Implement a priority queue based on server capacity for load balancing.
  • Use a random assignment of tasks to achieve load balancing.
  • Utilize a queue to assign tasks to servers with the least load.
In distributed computing, queues can be utilized for load balancing by assigning tasks to servers with the least load. This helps in distributing tasks efficiently and maintaining optimal performance across multiple servers.

Parenthesization in Matrix Chain Multiplication refers to _______.

  • Adding parentheses at random positions in the matrix expression.
  • Counting the number of parentheses in the matrix expression.
  • Determining the order in which matrices are multiplied.
  • Ignoring parentheses and directly multiplying matrices.
Parenthesization in Matrix Chain Multiplication refers to determining the order in which matrices are multiplied to minimize the total number of scalar multiplications. It is a crucial step in the dynamic programming approach to optimizing matrix chain multiplication.

How does Dijkstra's algorithm ensure finding the shortest path in a weighted graph?

  • It always selects the vertex with the highest tentative distance
  • It considers only the edge weights, ignoring vertex values
  • It performs a random walk on the graph
  • It uses a priority queue to select the vertex with the smallest tentative distance
Dijkstra's algorithm ensures finding the shortest path by using a priority queue to consistently choose the vertex with the smallest tentative distance at each step, guaranteeing an optimal solution.

Memoization involves storing the results of _______ subproblems to avoid redundant calculations in the recursive solution to the coin change problem.

  • All possible
  • Previously solved
  • Some random
  • Upcoming
Memoization involves storing the results of previously solved subproblems to avoid redundant calculations in the recursive solution to the coin change problem. This technique helps in optimizing the solution by avoiding repeated computations.

How does the Ford-Fulkerson algorithm find the maximum flow in a network?

  • By employing the depth-first search (DFS) algorithm.
  • By iteratively augmenting the flow along augmenting paths.
  • By sorting the edges based on their weights and selecting the maximum.
  • By using the breadth-first search (BFS) algorithm.
The Ford-Fulkerson algorithm finds the maximum flow in a network by iteratively augmenting the flow along augmenting paths. It repeatedly selects a path from the source to the sink and increases the flow along that path until no more augmenting paths can be found.

What is an array in programming?

  • A data structure that stores elements of different data types in a linear, contiguous memory location.
  • A function that returns the length of a string.
  • A loop used for repetitive tasks in programming.
  • A sorting algorithm based on divide and conquer.
An array in programming is a data structure that stores elements of the same data type in a contiguous memory location. It allows for efficient storage and retrieval of elements using an index.

What is the primary principle behind Depth-First Search (DFS)?

  • Explore as far as possible along each branch before backtracking
  • Explore nodes in a circular manner
  • Explore the closest nodes first
  • Randomly explore nodes
The primary principle behind Depth-First Search (DFS) is to explore as far as possible along each branch before backtracking. This results in traversing deeper into the graph or tree structure.