Algorithms
Algorithms
  • 1. Algorithms are step-by-step procedures or formulas for solving problems. They are a set of instructions that describe how to perform a task or solve a problem effectively. Algorithms are used in various fields such as computer science, mathematics, engineering, and more. They help in organizing data, making decisions, and automating processes. By designing efficient algorithms, we can optimize the use of resources, improve performance, and solve complex problems in a systematic way.

    Which sorting algorithm has a worst-case time complexity of O(n2)?
A) Heap Sort
B) Merge Sort
C) Quick Sort
D) Bubble Sort
  • 2. What data structure is typically used in a Depth-First Search (DFS) algorithm?
A) Stack
B) Queue
C) Binary Tree
D) Array
  • 3. Which algorithm is commonly used to find the shortest path in a graph with non-negative edge weights?
A) Prim's algorithm
B) Bellman-Ford algorithm
C) Dijkstra's algorithm
D) A* search algorithm
  • 4. What does the 'recursion' mean in the context of algorithms?
A) A function that calls itself in a problem-solving process.
B) A function that iterates over a collection of elements.
C) A function that has no return statement.
D) A function that generates random numbers.
  • 5. Which algorithm is used to find the transitive closure of a directed graph?
A) Warshall's algorithm
B) Kosaraju's algorithm
C) Floyd's algorithm
D) Tarjan's algorithm
  • 6. What is the term for the measure of how detailed the instructions are in an algorithm?
A) Scalability
B) Granularity
C) Efficiency
D) Complexity
  • 7. Which of the following is a divide and conquer algorithm?
A) Insertion Sort
B) Merge Sort
C) Bubble Sort
D) Selection Sort
  • 8. What is the process of making a repetitive sequence shorter by using previous occurrences called?
A) Burrows-Wheeler Transform
B) Huffman Coding
C) Differential Encoding
D) Run-Length Encoding
  • 9. What data structure is typically used in a Breadth-First Search algorithm?
A) Linked List
B) Stack
C) Heap
D) Queue
  • 10. Which algorithm can be used to find the maximum flow in a flow network?
A) Depth-First Search
B) Binary Search algorithm
C) Bubble Sort
D) Ford-Fulkerson algorithm
  • 11. What is the worst-case time complexity of the Quick Sort algorithm?
A) O(log n)
B) O(n)
C) O(n log n)
D) O(n2)
  • 12. What is the main advantage of the breadth-first search (BFS) algorithm over depth-first search (DFS)?
A) BFS is easier to implement.
B) BFS guarantees the shortest path to the goal.
C) DFS uses less memory space.
D) DFS finds the path more quickly.
  • 13. What is the primary goal of the Floyd-Warshall algorithm?
A) To find the shortest paths between all pairs of vertices in a weighted graph.
B) To calculate the maximum flow in a flow network.
C) To determine the largest connected component in an undirected graph.
D) To sort elements in ascending order.
  • 14. Which algorithm is used to find the longest common subsequence between two sequences?
A) Radix Sort
B) Heap Sort
C) Selection Sort
D) Longest Common Subsequence algorithm
  • 15. Who was the Persian scientist and polymath who wrote about algorithms in 825 AD?
A) Muḥammad ibn Mūsā al-Khwārizmī
B) John of Seville
C) Adelard of Bath
D) Geoffrey Chaucer
  • 16. What is the Latinized form of Al-Khwarizmi's name used in early translations?
A) augrym
B) arithmos
C) Algorism
D) algoritmi
  • 17. Which text by al-Khwārizmī is known as 'Book of Indian computation'?
A) The Canterbury Tales
B) Liber Alghoarismi de practica arismetrice
C) Liber Algoritmi de numero Indorum
D) kitāb al-ḥisāb al-hindī
  • 18. In what context are social media recommender systems often mistakenly called 'algorithms'?
A) They are based on finite sequences of instructions.
B) They use deterministic processes to generate recommendations.
C) They rely on heuristics, not true algorithms.
D) They provide well-defined correct results for all users.
  • 19. What is the role of conditionals in advanced algorithms?
A) They ensure that the algorithm always terminates.
B) They eliminate randomness from the algorithm.
C) They prevent automated reasoning.
D) They divert code execution through various routes.
  • 20. What does 'automated reasoning' refer to in the context of algorithms?
A) Generating random outputs without input.
B) Following a fixed sequence of operations.
C) Using heuristics to solve problems.
D) Deducing valid inferences through code execution.
  • 21. What is the significance of 'augrym stones' mentioned by Geoffrey Chaucer?
A) They were early computers.
B) They were used for place-value calculation.
C) They represented heuristic methods.
D) They were a form of algorithmic programming.
  • 22. In which ancient civilization were the earliest division algorithms recorded?
A) Chinese mathematics
B) Greek mathematics
C) Babylonian mathematics
D) Egyptian mathematics
  • 23. Which dynasty is associated with Babylonian clay tablets describing algorithms for computing formulas?
A) Neo-Babylonian dynasty
B) Akkadian dynasty
C) Assyrian dynasty
D) Hammurabi dynasty
  • 24. The Rhind Mathematical Papyrus is associated with which ancient civilization?
A) Indian mathematics
B) Babylonian mathematics
C) Egyptian mathematics
D) Greek mathematics
  • 25. Who developed the first cryptographic algorithm for deciphering encrypted code?
A) Euclid
B) Nicomachus
C) Muḥammad ibn Mūsā al-Khwārizmī
D) Al-Kindi
  • 26. Which algorithm design pattern involves defining a skeleton of an algorithm in a method?
A) Template method pattern
B) Decorator pattern
C) Divide-and-conquer
D) Dynamic programming
  • 27. Which invention was used worldwide by the mid-19th century?
A) Telegraph
B) Radio
C) Television
D) Telephone
  • 28. The Euclidean algorithm was first described in which ancient text?
A) Algebra by Al-Khwarizmi
B) Euclid's Elements
C) Sulba Sutras
D) Introduction to Arithmetic by Nicomachus
  • 29. Which invention led to the development of punch cards?
A) Analytical engine
B) Telegraph
C) Telephone-switching network
D) Jacquard loom
  • 30. What mechanism was key to the invention of weight-driven clocks in the Middle Ages?
A) Balance wheel mechanism
B) Quartz oscillator
C) Pendulum mechanism
D) Verge escapement mechanism
  • 31. Which problem-solving technique involves invoking itself repeatedly?
A) Serial execution
B) Recursion
C) Parallel processing
D) Iteration
  • 32. Which type of programming involves finding optimal solutions to a linear function with constraints?
A) Linear programming
B) Dynamic programming
C) Heuristic method
D) Greedy method
  • 33. Which approach involves building multiple solutions incrementally and abandoning them if they cannot lead to a valid full solution?
A) Reduction of complexity
B) Brute-force or exhaustive search
C) Divide and conquer
D) Backtracking
  • 34. Who invented the digital adding device in 1937?
A) John von Neumann
B) Konrad Zuse
C) Alan Turing
D) George Stibitz
  • 35. What is a common application of greedy algorithms in graph theory?
A) Solving integer programming problems.
B) Finding minimal spanning trees.
C) Simulating annealing processes.
D) Optimizing linear functions with constraints.
  • 36. Who began attempts to solve David Hilbert's Entscheidungsproblem in 1928?
A) David Hilbert
B) Alonzo Church
C) Emil Post
D) Alan Turing
  • 37. Which of the following is not a structured expression of algorithms that avoids common ambiguities of natural language?
A) Natural languages
B) Pseudocode
C) Drakon-charts
D) Flowcharts
  • 38. Who is credited with designing the first algorithm intended for a computer?
A) Ada Lovelace
B) George Stibitz
C) Charles Babbage
D) Herman Hollerith
  • 39. What is the subclass of Monte Carlo algorithms that runs in polynomial time?
A) RP
B) P
C) NP
D) ZPP
  • 40. What primary symbol in a flowchart represents decisions?
A) Dots
B) Diamonds
C) Rectangles
D) Arrows
  • 41. Which representation gives the exact state table and list of transitions for a Turing machine?
A) Formal description
B) Implementation description
C) Control tables
D) High-level description
  • 42. What method did Al-Kindi describe for cryptanalysis?
A) Substitution cipher
B) Frequency analysis
C) Caesar cipher
D) Transposition cipher
  • 43. What did NIST update in 2024 related to quantum computing?
A) Turing machines
B) SAINT program
C) Post-quantum encryption standards
D) Lambda calculus
  • 44. Which of these is NOT a canonical structure augmented by Tausworthe?
A) SEQUENCE
B) WHILE-DO
C) RECURSION
D) IF-THEN-ELSE
  • 45. Which library integrated the small sorting algorithms discovered by AlphaDev?
A) Python's built-in sort function
B) LLVM standard C++ sorting library
C) Java Collections Framework
D) C# System.Linq
  • 46. What does AlphaEvolve use to propose code changes?
A) Language models
B) Human coders
C) Reinforcement learning
D) Automated evaluators
  • 47. In flowchart representation, what does an arrow symbolize?
A) Sub-structure nesting
B) Program flow
C) Output
D) Decision point
  • 48. In what year was AlphaDev introduced by Google DeepMind?
A) 2020
B) 2025
C) 2023
D) 2019
  • 49. What does pseudocode typically represent in algorithm analysis?
A) A detailed implementation guide
B) A simple and general representation
C) An optimized code for specific hardware
D) A graphical aid like a flowchart
  • 50. Which heuristic algorithm is non-deterministic?
A) Prim's algorithm
B) Simulated annealing
C) Tabu search
D) Floyd–Warshall algorithm
  • 51. Which type of algorithms are inherently serial and cannot be parallelized?
A) Inherently serial problems
B) Distributed algorithms
C) Parallelizable algorithms
D) Non-deterministic algorithms
  • 52. Which AI system discovered improved sorting and hashing algorithms?
A) AlphaEvolve
B) AlphaZero
C) AlphaDev
D) DeepMind
  • 53. Which device is considered the first real Turing-complete computer?
A) Z3
B) Babbage's analytical engine
C) Difference Engine
D) ENIAC
  • 54. Which search algorithm is more efficient for sorted lists in terms of time complexity?
A) Linear search
B) Bubble sort
C) Binary search
D) Sequential search
  • 55. What is the open question known as that involves whether randomized algorithms with polynomial time complexity can be the fastest for some problems?
A) Las Vegas problem
B) P versus NP problem
C) Reduction of complexity problem
D) Monte Carlo problem
  • 56. Which design approach involves breaking a problem into smaller sub-problems?
A) Decorator pattern
B) Template method pattern
C) Divide-and-conquer
D) Dynamic programming
  • 57. What was a significant development in data storage and transmission around 1890?
A) Magnetic tape
B) Hard drives
C) Punch cards
D) Floppy disks
  • 58. Which formalization is associated with Alonzo Church and was introduced in 1936?
A) Formulation 1
B) Turing machines
C) Recursive functions
D) Lambda calculus
  • 59. Which AI development has inverted the traditional sequence of algorithm evolution from heuristics to formal algorithms?
A) Transformer-based AI
B) NIST encryption standards
C) Quantum computing
D) SAINT program
  • 60. Which invention in 1835 led to the development of telephone-switching networks?
A) Electromechanical relays
B) Telegraph
C) Punch cards
D) Difference engine
  • 61. What type of problems can be solved using the greedy method for minimal spanning trees?
A) Dynamic programming problems.
B) Linear programming problems.
C) Graphs without negative cycles.
D) Problems with integer constraints.
  • 62. What was the primary use of ticker tape developed in the 1870s?
A) Text messaging
B) Audio recording
C) Data transmission
D) Image printing
  • 63. Which century saw the use of accurate automatic machines leading to mechanical automata?
A) 15th century
B) 13th century
C) 17th century
D) 19th century
Created with That Quiz — the site for test creation and grading in math and other subjects.