InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 51. |
DFS is ______ efficient and BFS is __________ efficient.(a) Space, Time(b) Time, Space(c) Time, Time(d) Space, SpaceThis question was addressed to me in exam.I'm obligated to ask this question of Uninformed Search and Exploration in section Problem Solving of Artificial Intelligence |
|
Answer» The correct answer is (a) SPACE, Time |
|
| 52. |
For general graph, how one can get rid of repeated states?(a) By maintaining a list of visited vertices(b) By maintaining a list of traversed edges(c) By maintaining a list of non-visited vertices(d) By maintaining a list of non-traversed edgesThis question was posed to me in an interview for internship.Query is from Uninformed Search and Exploration topic in chapter Problem Solving of Artificial Intelligence |
|
Answer» Correct CHOICE is (a) By maintaining a LIST of VISITED vertices |
|
| 53. |
When the environment of an agent is partially observable in search space following problem/problems could occur.(a) Sensorless problems: If the agent has no sensors at all, then (as far as it knows) it could be in one of several possible initial states, and each action might therefore lead to one of several possible successor states(b) Contingency problems: If the environment is partially observable or if actions are uncertain, then the agent’s percepts provide new information after each action. Each possible percept defines a contingency that must be planned for. A problem is called adversarial if the uncertainty is caused by the actions of another agent(c) Exploration problems: When the states and actions of the environment are unknown, the agent must act to discover them. Exploration problems can be viewed as an extreme case of contingency problems(d) All of the mentionedThis question was posed to me during an interview for a job.This intriguing question comes from Uninformed Search and Exploration topic in section Problem Solving of Artificial Intelligence |
|
Answer» RIGHT OPTION is (d) All of the mentioned To EXPLAIN: NONE. |
|
| 54. |
LIFO is ______ where as FIFO is ________(a) Stack, Queue(b) Queue, Stack(c) Priority Queue, Stack(d) Stack. Priority QueueI had been asked this question in an international level competition.My query is from Uninformed Search and Exploration in section Problem Solving of Artificial Intelligence |
|
Answer» Right CHOICE is (a) Stack, Queue |
|
| 55. |
Optimality of BFS is ___________(a) When there is less number of nodes(b) When all step costs are equal(c) When all step costs are unequal(d) None of the mentionedThis question was posed to me in final exam.Question is taken from Uninformed Search and Exploration in division Problem Solving of Artificial Intelligence |
|
Answer» The correct choice is (b) When all STEP COSTS are equal |
|
| 56. |
Depth-first search always expands the ______ node in the current fringe of the search tree.(a) Shallowest(b) Child node(c) Deepest(d) Minimum costThis question was posed to me during an interview.My question comes from Uninformed Search and Exploration in chapter Problem Solving of Artificial Intelligence |
|
Answer» CORRECT CHOICE is (c) Deepest The explanation: Depth-first search ALWAYS expands the deepest/leaf NODE in the current fringe of the search TREE. |
|
| 57. |
Breadth-first search is not optimal when all step costs are equal, because it always expands the shallowest unexpanded node.(a) True(b) FalseI got this question during an interview.I'm obligated to ask this question of Uninformed Search and Exploration in section Problem Solving of Artificial Intelligence |
|
Answer» The correct choice is (b) False |
|
| 58. |
uniform-cost search expands the node n with the __________(a) Lowest path cost(b) Heuristic cost(c) Highest path cost(d) Average path costI got this question during a job interview.My query is from Uninformed Search and Exploration topic in chapter Problem Solving of Artificial Intelligence |
|
Answer» RIGHT answer is (a) Lowest path cost The explanation: Uniform-cost search EXPANDS the node n with the lowest path cost. Note that if all STEP costs are equal, this is IDENTICAL to breadth-first search. |
|
| 59. |
The time and space complexity of BFS is (For time and space complexity problems consider b as branching factor and d as depth of the search tree.)(a) O(bd+1) and O(bd+1)(b) O(b2) and O(d2)(c) O(d2) and O(b2)(d) O(d2) and O(d2)The question was posed to me in homework.My query is from Uninformed Search and Exploration in chapter Problem Solving of Artificial Intelligence |
|
Answer» The CORRECT answer is (a) O(bd+1) and O(bd+1) |
|
| 60. |
Which data structure conveniently used to implement DFS?(a) Stacks(b) Queues(c) Priority Queues(d) All of the mentionedThe question was posed to me during an interview.This interesting question is from Uninformed Search and Exploration in chapter Problem Solving of Artificial Intelligence |
|
Answer» CORRECT ANSWER is (a) Stacks The EXPLANATION: DFS requires node to be expanded the one most recent VISITED, hence stack is convenient to implement. |
|
| 61. |
Which data structure conveniently used to implement BFS?(a) Stacks(b) Queues(c) Priority Queues(d) All of the mentionedThis question was posed to me in unit test.Question is taken from Uninformed Search and Exploration topic in chapter Problem Solving of Artificial Intelligence |
|
Answer» Right answer is (b) Queues |
|
| 62. |
Which of the following is/are Uninformed Search technique/techniques?(a) Breadth First Search (BFS)(b) Depth First Search (DFS)(c) Bidirectional Search(d) All of the mentionedI got this question in a national level competition.My question is based upon Uninformed Search and Exploration topic in division Problem Solving of Artificial Intelligence |
|
Answer» The correct choice is (d) All of the mentioned |
|
| 63. |
Strategies that know whether one non-goal state is “more promising” than another are called ___________(a) Informed &Unformed Search(b) Unformed Search(c) Heuristic & Unformed Search(d) Informed & Heuristic SearchI had been asked this question in my homework.I want to ask this question from Uninformed Search and Exploration in chapter Problem Solving of Artificial Intelligence |
|
Answer» Right CHOICE is (d) Informed & HEURISTIC Search |
|
| 64. |
What is the general term of Blind searching?(a) Informed Search(b) Uninformed Search(c) Informed &Unformed Search(d) Heuristic SearchI got this question in an online quiz.My question is based upon Uninformed Search and Exploration topic in division Problem Solving of Artificial Intelligence |
|
Answer» Correct answer is (B) UNINFORMED Search |
|
| 65. |
Which search algorithm imposes a fixed depth limit on nodes?(a) Depth-limited search(b) Depth-first search(c) Iterative deepening search(d) Bidirectional searchThis question was posed to me by my college director while I was bunking the class.Asked question is from Uninformed Search Strategy topic in portion Problem Solving of Artificial Intelligence |
|
Answer» The CORRECT CHOICE is (a) Depth-limited search |
|
| 66. |
Which search implements stack operation for searching the states?(a) Depth-limited search(b) Depth-first search(c) Breadth-first search(d) None of the mentionedThe question was asked by my school teacher while I was bunking the class.The origin of the question is Uninformed Search Strategy in portion Problem Solving of Artificial Intelligence |
|
Answer» The correct ANSWER is (b) Depth-first search |
|
| 67. |
Which algorithm is used to solve any kind of problem?(a) Breadth-first algorithm(b) Tree algorithm(c) Bidirectional search algorithm(d) None of the mentionedI had been asked this question during an interview.The question is from Uninformed Search Strategy in chapter Problem Solving of Artificial Intelligence |
|
Answer» CORRECT OPTION is (b) Tree algorithm Explanation: Tree algorithm is used because specific variants of the algorithm EMBED different STRATEGIES. |
|
| 68. |
How many parts does a problem consists of?(a) 1(b) 2(c) 3(d) 4I had been asked this question in an international level competition.The query is from Uninformed Search Strategy in chapter Problem Solving of Artificial Intelligence |
|
Answer» Right ANSWER is (d) 4 |
|
| 69. |
What is the space complexity of Depth-first search?(a) O(b)(b) O(bl)(c) O(m)(d) O(bm)The question was posed to me during a job interview.My question is from Uninformed Search Strategy topic in chapter Problem Solving of Artificial Intelligence |
|
Answer» The correct CHOICE is (d) O(BM) |
|
| 70. |
How many successors are generated in backtracking search?(a) 1(b) 2(c) 3(d) 4The question was asked by my school teacher while I was bunking the class.Enquiry is from Uninformed Search Strategy topic in chapter Problem Solving of Artificial Intelligence |
|
Answer» Right ANSWER is (a) 1 |
|
| 71. |
Which search is implemented with an empty first-in-first-out queue?(a) Depth-first search(b) Breadth-first search(c) Bidirectional search(d) None of the mentionedThe question was asked by my college professor while I was bunking the class.Enquiry is from Uninformed Search Strategy topic in division Problem Solving of Artificial Intelligence |
|
Answer» RIGHT OPTION is (b) Breadth-first search The BEST I can explain: Because of FIFO queue, it will assure that the nodes that are visited first will be expanded first. |
|
| 72. |
When is breadth-first search is optimal?(a) When there is less number of nodes(b) When all step costs are equal(c) When all step costs are unequal(d) None of the mentionedThis question was posed to me during an interview.Question is taken from Uninformed Search Strategy in portion Problem Solving of Artificial Intelligence |
|
Answer» Correct option is (b) When all STEP costs are equal |
|
| 73. |
How many types are available in uninformed search method?(a) 3(b) 4(c) 5(d) 6This question was posed to me in my homework.Asked question is from Uninformed Search Strategy topic in division Problem Solving of Artificial Intelligence |
|
Answer» Correct CHOICE is (c) 5 |
|
| 74. |
Which search strategy is also called as blind search?(a) Uninformed search(b) Informed search(c) Simple reflex search(d) All of the mentionedI have been asked this question in final exam.My enquiry is from Uninformed Search Strategy topic in section Problem Solving of Artificial Intelligence |
|
Answer» The correct CHOICE is (a) Uninformed SEARCH |
|
| 75. |
Which search method takes less memory?(a) Depth-First Search(b) Breadth-First search(c) Linear Search(d) Optimal searchI had been asked this question in an internship interview.The above asked question is from Problem Solving in portion Problem Solving of Artificial Intelligence |
|
Answer» The correct answer is (a) Depth-First Search |
|
| 76. |
A production rule consists of ____________(a) A set of Rule(b) A sequence of steps(c) Set of Rule & sequence of steps(d) Arbitrary representation to problemThe question was asked by my college director while I was bunking the class.My query is from Problem Solving topic in chapter Problem Solving of Artificial Intelligence |
|
Answer» The CORRECT option is (C) SET of Rule & SEQUENCE of steps |
|
| 77. |
Web Crawler is a/an ____________(a) Intelligent goal-based agent(b) Problem-solving agent(c) Simple reflex agent(d) Model based agentI got this question in my homework.Origin of the question is Problem Solving topic in section Problem Solving of Artificial Intelligence |
|
Answer» Right choice is (a) Intelligent goal-based agent |
|
| 78. |
What is the major component/components for measuring the performance of problem solving?(a) Completeness(b) Optimality(c) Time and Space complexity(d) All of the mentionedI have been asked this question in an interview.This intriguing question originated from Problem Solving topic in division Problem Solving of Artificial Intelligence |
|
Answer» Right answer is (d) All of the mentioned |
|
| 79. |
The _______ is a touring problem in which each city must be visited exactly once. The aim is to find the shortest tour.(a) Finding shortest path between a source and a destination(b) Travelling Salesman problem(c) Map coloring problem(d) Depth first search traversal on a given map represented as a graphI have been asked this question in an internship interview.I'd like to ask this question from Problem Solving topic in portion Problem Solving of Artificial Intelligence |
|
Answer» CORRECT choice is (b) Travelling Salesman problem For explanation I WOULD SAY: Refer the TSP problem. |
|
| 80. |
A problem solving approach works well for ______________(a) 8-Puzzle problem(b) 8-queen problem(c) Finding a optimal path from a given source to a destination(d) Mars Hover (Robot Navigation)This question was addressed to me in my homework.My doubt stems from Problem Solving in section Problem Solving of Artificial Intelligence |
|
Answer» CORRECT CHOICE is (d) Mars Hover (Robot Navigation) The EXPLANATION: Problem-solving approach works well for TOY problems and real-world problems. |
|
| 81. |
The process of removing detail from a given state representation is called ______(a) Extraction(b) Abstraction(c) Information Retrieval(d) Mining of dataI had been asked this question at a job interview.This question is from Problem Solving topic in portion Problem Solving of Artificial Intelligence |
|
Answer» CORRECT answer is (B) Abstraction For explanation: The process of removing detail from a REPRESENTATION is CALLED abstraction. |
|
| 82. |
The problem-solving agent with several immediate options of unknown value can decide what to do by just examining different possible sequences of actions that lead to states of known value, and then choosing the best sequence. This process of looking for such a sequence is called Search.(a) True(b) FalseI got this question in unit test.This interesting question is from Problem Solving in chapter Problem Solving of Artificial Intelligence |
|
Answer» The CORRECT CHOICE is (a) True |
|
| 83. |
A solution to a problem is a path from the initial state to a goal state. Solution quality is measured by the path cost function, and an optimal solution has the highest path cost among all solutions.(a) True(b) FalseThe question was posed to me by my school principal while I was bunking the class.My query is from Problem Solving topic in chapter Problem Solving of Artificial Intelligence |
|
Answer» The correct option is (a) True |
|
| 84. |
The Set of actions for a problem in a state space is formulated by a ___________(a) Intermediate states(b) Initial state(c) Successor function, which takes current action and returns next immediate state(d) None of the mentionedThis question was posed to me in exam.I would like to ask this question from Problem Solving in chapter Problem Solving of Artificial Intelligence |
|
Answer» Right ANSWER is (c) Successor function, which TAKES current action and returns next immediate state |
|
| 85. |
A problem in a search space is defined by one of these state.(a) Initial state(b) Last state(c) Intermediate state(d) All of the mentionedI got this question during an interview.This intriguing question originated from Problem Solving in chapter Problem Solving of Artificial Intelligence |
|
Answer» Correct OPTION is (a) INITIAL STATE |
|
| 86. |
A search algorithm takes _________ as an input and returns ________ as an output.(a) Input, output(b) Problem, solution(c) Solution, problem(d) Parameters, sequence of actionsThe question was asked in an online interview.The origin of the question is Problem Solving topic in portion Problem Solving of Artificial Intelligence |
|
Answer» Right ANSWER is (B) Problem, solution |
|
| 87. |
What is state space?(a) The whole problem(b) Your Definition to a problem(c) Problem you design(d) Representing your problem with variable and parameterThis question was posed to me in examination.Question is from Problem Solving in section Problem Solving of Artificial Intelligence |
|
Answer» Correct answer is (d) Representing your problem with variable and parameter |
|
| 88. |
What is the main task of a problem-solving agent?(a) Solve the given problem and reach to goal(b) To find out which sequence of action will get it to the goal state(c) All of the mentioned(d) None of the mentionedThis question was posed to me in an online quiz.This interesting question is from Problem Solving topic in section Problem Solving of Artificial Intelligence |
|
Answer» Right ANSWER is (C) All of the mentioned |
|