Search
Question: What is a key feature of neural networks in cloud ML services?Options: They require no dat..
Question: What is the purpose of cross-validation?Options: To increase the size of the training data..
Question: What is the main advantage of using neural networks?Options: They require less data than t..
Question: Which of the following is an example of a cloud service?Options: Google DriveMicrosoft Wor..
Question: Which traversal would you use to delete a binary tree?Options: In-orderPre-orderPost-order..
Question: What is the main difference between depth-first and breadth-first traversal?Options: Order..
Question: In a level-order traversal, which data structure is typically used to keep track of nodes?..
Question: Which of the following is NOT a valid tree traversal method?Options: In-orderPre-orderPost..
Question: What is the time complexity of an in-order traversal of a binary tree?Options: O(n)O(log n..
Question: In a stack, what is the result of the operation \'push(5)\', followed by \'push(10)\', and..
Question: Which of the following operations can be performed in constant time on a queue?Options: En..
Question: What is the main difference between a stack and a queue?Options: Stack is LIFO, Queue is F..
Question: What happens when you try to pop an element from an empty stack?Options: It returns nullIt..
Question: Which of the following is a common application of a queue?Options: Function call managemen..
Question: In which scenario would you prefer using a stack over a queue?Options: When you need to pr..
Question: Which of the following operations is NOT typically associated with a queue?Options: Enqueu..
Question: What is the output of the Bellman-Ford algorithm?Options: A single shortest pathA list of ..
Question: What is the main advantage of Dijkstra\'s algorithm over the Bellman-Ford algorithm?Option..
Question: Which algorithm is guaranteed to find the shortest path in a graph with negative weight ed..
Question: In which scenario would you prefer the Bellman-Ford algorithm over Dijkstra\'s algorithm?O..
Question: Which of the following statements is true about the Bellman-Ford algorithm?Options: It can..
Question: Which of the following is an example of a problem that can be solved using divide and conq..
Question: What happens if a recursive function does not have a base case?Options: It will run indefi..
Question: Which of the following is true about recursive algorithms?Options: They always run faster ..
Question: What is tail recursion?Options: Recursion where the last operation is a recursive callRecu..
Question: Which of the following problems can be solved using recursion?Options: Finding the maximum..
Question: In a recursive function, what is the purpose of the return statement?Options: To terminate..
Question: Which of the following is a base case in a recursive function?Options: The case that leads..
Question: What is the time complexity of a recursive function that divides the problem size by half ..
Question: What does the term \'memory leak\' refer to?Options: Not freeing allocated memoryAccessing..