Artificial Intelligence MCQ

1. What do the domain dependent MCTS filters out?

Answer

Correct Answer: Implausible moves

Note: This Question is unanswered, help us to find answer for this one

2. Nodes must be visited many times before they begin to yield what?

Answer

Correct Answer: Reliable estimates

Note: This Question is unanswered, help us to find answer for this one

3. What speed is needed to get reliable estimates?

Answer

Correct Answer: Search Speed

Note: This Question is unanswered, help us to find answer for this one

4. What property of MCTS fails to find good moves?

Answer

Correct Answer: Strength of play

Note: This Question is unanswered, help us to find answer for this one

5. What type of search does not require any domain knowledge?

Answer

Correct Answer: MCTS

Note: This Question is unanswered, help us to find answer for this one

6. How can probabilities be applied to a game?

Answer

Correct Answer: Yielding an optimal outcome

Note: This Question is unanswered, help us to find answer for this one

7. What property does a mixed strategy have?

Answer

Correct Answer: Apply probabilities

Note: This Question is unanswered, help us to find answer for this one

8. What is the term for applying probabilities to each move in a game?

Answer

Correct Answer: Mixed Strategy

Note: This Question is unanswered, help us to find answer for this one

9. What is a term for an outcome where no player can gain by unilaterally deviating?

Answer

Correct Answer: Nash Equilibrium

Note: This Question is unanswered, help us to find answer for this one

10. How many equilibria are there in Nash Equilibrium?

Answer

Correct Answer: Two

Note: This Question is unanswered, help us to find answer for this one

11. A method for eliminating branches during the search that will not affect the outcome, called what?

Answer

Correct Answer: Alpha Beta Pruning

Note: This Question is unanswered, help us to find answer for this one

12. What is the name of the technique used for searching two-player game trees?

Answer

Correct Answer: Bounded Minimax

Note: This Question is unanswered, help us to find answer for this one

13. When we bound the search we may cut off what happens?

Answer

Correct Answer: Before something interesting happens

Note: This Question is unanswered, help us to find answer for this one

14. When we bound the search we may cut off before something interesting happens; can be too what?

Answer

Correct Answer: Time/space consuming

Note: This Question is unanswered, help us to find answer for this one

15. What should an efficient evaluation function do?

Answer

Correct Answer: Calculated a bunch

Note: This Question is unanswered, help us to find answer for this one

16. What is the name of the way to look at a game state without knowing any context?

Answer

Correct Answer: Evaluation Function

Note: This Question is unanswered, help us to find answer for this one

17. What type of games have a positive reward for one player that is a negative reward for the other?

Answer

Correct Answer: Zero Sum Games

Note: This Question is unanswered, help us to find answer for this one

18. What is a game that involves a positive reward for one player being a negative reward for the other?

Answer

Correct Answer: Rock paper scissors

Note: This Question is unanswered, help us to find answer for this one

19. Terminal states of the game are represented by what?

Answer

Correct Answer: Leaves

Note: This Question is unanswered, help us to find answer for this one

20. An adversary can be thought of as being an opponent of what?

Answer

Correct Answer: Search

Note: This Question is unanswered, help us to find answer for this one

21. What are the desirable properties of games?

Answer

Correct Answer: Deterministic

Note: This Question is unanswered, help us to find answer for this one

22. What does a genetic programming candidate solution contain?

Answer

Correct Answer: Complete computer programs

Note: This Question is unanswered, help us to find answer for this one

23. What is represented by a series of numbers?

Answer

Correct Answer: Genetic Algorithm Candidate solutions

Note: This Question is unanswered, help us to find answer for this one

24. What is more likely to be chosen to reproduce?

Answer

Correct Answer: Fitter individuals

Note: This Question is unanswered, help us to find answer for this one

25. Objective function evaluates candidate solutions by maintaining population of candidate solutions, each candidate is evaluated using which feature?

Answer

Correct Answer: Population Based Search

Note: This Question is unanswered, help us to find answer for this one

26. Population may focus too soon on which area of the search space?

Answer

Correct Answer: Suboptimal

Note: This Question is unanswered, help us to find answer for this one

27. What property of the beam search makes it memory efficient?

Answer

Correct Answer: Quickly focuses on promising areas

Note: This Question is unanswered, help us to find answer for this one

28. What is the goal of local search to maximise?

Answer

Correct Answer: Fitness

Note: This Question is unanswered, help us to find answer for this one

29. What is likely too slow in practice?

Answer

Correct Answer: Simulated Annealing Performance

Note: This Question is unanswered, help us to find answer for this one

30. Which type of algorithm uses a temperature parameter to control the probability of downward steps?

Answer

Correct Answer: Simulated Annealing

Note: This Question is unanswered, help us to find answer for this one

31. What is an example of a sideways step?

Answer

Correct Answer: Hill Climbing

Note: This Question is unanswered, help us to find answer for this one

32. What is an example of an algorithm that takes sideways steps to move away from a plateau?

Answer

Correct Answer: Handling Plateaus with Hill Climbing

Note: This Question is unanswered, help us to find answer for this one

33. What is the goal of local maximum search?

Answer

Correct Answer: Find global maximum

Note: This Question is unanswered, help us to find answer for this one

34. What is an example of a local search requirement?

Answer

Correct Answer: State Representation

Note: This Question is unanswered, help us to find answer for this one

35. What is the function required to maximise?

Answer

Correct Answer: Objective function

Note: This Question is unanswered, help us to find answer for this one

36. What are two of the features of local search that may not be guaranteed?

Answer

Correct Answer: Complete or optimal

Note: This Question is unanswered, help us to find answer for this one

37. Which type of memory does Local Search use?

Answer

Correct Answer: Very little

Note: This Question is unanswered, help us to find answer for this one

38. What is the name of the search engine that uses very little memory?

Answer

Correct Answer: Local Search

Note: This Question is unanswered, help us to find answer for this one

39. What is contained within the Local Search State description?

Answer

Correct Answer: All of the information for a solution

Note: This Question is unanswered, help us to find answer for this one

40. What is the only field that looks ahead to estimate distance to goal?

Answer

Correct Answer: Greedy Best First Only

Note: This Question is unanswered, help us to find answer for this one

41. What is the term for searching for information in limited amounts?

Answer

Correct Answer: Limited Search

Note: This Question is unanswered, help us to find answer for this one

42. What is a feature that the depth limited search can handle?

Answer

Correct Answer: Infinite spaces

Note: This Question is unanswered, help us to find answer for this one

43. What is needed to perform the search?

Answer

Correct Answer: Memory

Note: This Question is unanswered, help us to find answer for this one

44. What property of a solution to a problem is ensured by a complete search?

Answer

Correct Answer: Completeness

Note: This Question is unanswered, help us to find answer for this one

45. Informed search methods receive what to help them in finding the goal?

Answer

Correct Answer: Additional information

Note: This Question is unanswered, help us to find answer for this one

46. Informed methods are given additional information about what?

Answer

Correct Answer: The goal

Note: This Question is unanswered, help us to find answer for this one

47. Uninformed methods are only given the problem definition when?

Answer

Correct Answer: Uninformed Search

Note: This Question is unanswered, help us to find answer for this one

48. What is the term that refers to the infinite number of states within an environment?

Answer

Correct Answer: Continuous

Note: This Question is unanswered, help us to find answer for this one

49. For an environment to be discrete, what is required?

Answer

Correct Answer: A finite number of distinct state

Note: This Question is unanswered, help us to find answer for this one

50. What can't change while the agent is deciding what action to take?

Answer

Correct Answer: The environment

Note: This Question is unanswered, help us to find answer for this one

51. If the environment can change while the agent is deciding what action to take, what does that term mean?

Answer

Correct Answer: Safety features in a car

Note: This Question is unanswered, help us to find answer for this one

52. What can change while an agent is deciding what action to take?

Answer

Correct Answer: The environment

Note: This Question is unanswered, help us to find answer for this one

53. Which next state is not necessarily determined by the current state?

Answer

Correct Answer: Stochastic

Note: This Question is unanswered, help us to find answer for this one

54. What does it mean for the environment to be deterministic?

Answer

Correct Answer: Completely determined by the current state and the action taken by the agent

Note: This Question is unanswered, help us to find answer for this one

55. What does the term multi agent refer to?

Answer

Correct Answer: Agent needs to consider other players actions

Note: This Question is unanswered, help us to find answer for this one

56. Which agent need only consider its own actions to complete the task?

Answer

Correct Answer: Single Agent

Note: This Question is unanswered, help us to find answer for this one

57. What are agents similar to when they are represented graphically with a body?

Answer

Correct Answer: Embodied agents

Note: This Question is unanswered, help us to find answer for this one

58. What type of network does the echo state network contain?

Answer

Correct Answer: Recurrent neural

Note: This Question is unanswered, help us to find answer for this one

59. What are the only weights that are modified during training?

Answer

Correct Answer: Synapses that connect the hidden neurons to output neurons

Note: This Question is unanswered, help us to find answer for this one

60. What percentage of the neural network connections in an echo state network are fixed?

Answer

Correct Answer: 1%

Note: This Question is unanswered, help us to find answer for this one

61. Who proposed the Ebert test?

Answer

Correct Answer: Roger Ebert

Note: This Question is unanswered, help us to find answer for this one

62. What is eager learning compared to?

Answer

Correct Answer: Lazy learning

Note: This Question is unanswered, help us to find answer for this one

63. The process of discovering patterns in large data sets involves methods at what intersection?

Answer

Correct Answer: Machine learning, statistics, and database systems

Note: This Question is unanswered, help us to find answer for this one

64. What is the process of combining data residing in different sources and providing users with a unified view of them called?

Answer

Correct Answer: Data integration

Note: This Question is unanswered, help us to find answer for this one

65. The process of integrating multiple data sources to produce more consistent, accurate, and useful information than that provided by any individual data source is called what?

Answer

Correct Answer: Data Fusion

Note: This Question is unanswered, help us to find answer for this one

66. When we train a machine learning, what is the problem that we run into?

Answer

Correct Answer: Overfitting

Note: This Question is unanswered, help us to find answer for this one

67. What was the name of the Dartmouth Summer Research Project on Artificial Intelligence?

Answer

Correct Answer: Dartmouth workshop

Note: This Question is unanswered, help us to find answer for this one

68. What was the name of the workshop that started artificial intelligence as a field?

Answer

Correct Answer: Dartmouth Summer Research Project on Artificial Intelligence

Note: This Question is unanswered, help us to find answer for this one

69. What was the name of the 1956 summer workshop now considered seminal for artificial intelligence?

Answer

Correct Answer: The Dartmouth Summer Research Project on Artificial Intelligence

Note: This Question is unanswered, help us to find answer for this one

70. What type of neural network was used in Darkforest?

Answer

Correct Answer: Convolutional

Note: This Question is unanswered, help us to find answer for this one

71. What subject fields feature neural networks?

Answer

Correct Answer: Cognitive science

Note: This Question is unanswered, help us to find answer for this one

72. What does the term machine learning refer to?

Answer

Correct Answer: Predictive analytics

Note: This Question is unanswered, help us to find answer for this one

73. What interdisciplinary field deals with how computers can be made to gain high-level understanding from digital images or videos?

Answer

Correct Answer: Computer vision

Note: This Question is unanswered, help us to find answer for this one

74. In theoretical computer science, a computational problem is representing a what?

Answer

Correct Answer: Collection of questions

Note: This Question is unanswered, help us to find answer for this one

75. What is the study of algorithms for performing number theoretic computations?

Answer

Correct Answer: Algorithmic number theory

Note: This Question is unanswered, help us to find answer for this one

76. What are some of the principles that Computational neuroscience tries to understand?

Answer

Correct Answer: Development, structure, physiology, and cognitive abilities

Note: This Question is unanswered, help us to find answer for this one

77. Computational mathematics is the mathematical research in areas where what plays an essential role?

Answer

Correct Answer: Computing

Note: This Question is unanswered, help us to find answer for this one

78. What is the study of appropriate computational approaches to linguistic questions called?

Answer

Correct Answer: Computational linguistics

Note: This Question is unanswered, help us to find answer for this one

79. What is the meaning of the term "computational linguistics"?

Answer

Correct Answer: An interdisciplinary field concerned with the statistical or rule-based modeling of natural language

Note: This Question is unanswered, help us to find answer for this one

80. Learning theory is a subfield of?

Answer

Correct Answer: Artificial intelligence

Note: This Question is unanswered, help us to find answer for this one

81. What is the ability of a computer to learn a specific task from data or experimental observation called?

Answer

Correct Answer: Computational intelligence

Note: This Question is unanswered, help us to find answer for this one

82. Computational intelligence is the ability of a computer to learn?

Answer

Correct Answer: A specific task

Note: This Question is unanswered, help us to find answer for this one

83. Computational cybernetics is the integration of what two disciplines?

Answer

Correct Answer: Cybernetics and computational intelligence techniques

Note: This Question is unanswered, help us to find answer for this one

84. What do some fields of computational creativity include?

Answer

Correct Answer: Artificial intelligence, cognitive psychology, philosophy, and the arts

Note: This Question is unanswered, help us to find answer for this one

85. What is a task solved by a computer?

Answer

Correct Answer: Computational problem

Note: This Question is unanswered, help us to find answer for this one

86. What is computational chemistry used to assist in solving?

Answer

Correct Answer: Chemical problems

Note: This Question is unanswered, help us to find answer for this one

87. What uses computer simulation to assist in solving chemical problems?

Answer

Correct Answer: Computational chemistry

Note: This Question is unanswered, help us to find answer for this one

88. What is the name of the branch of artificial intelligence that is concerned with simulating the human ability to make presumptions about the type and essence of ordinary situations they encounter every day?

Answer

Correct Answer: Commonsense reasoning

Note: This Question is unanswered, help us to find answer for this one

89. What is common sense reasoning concerned with?

Answer

Correct Answer: Simulating the human ability to make presumptions about the type and essence of ordinary situations they encounter every day

Note: This Question is unanswered, help us to find answer for this one

90. What kind of knowledge is commonsense knowledge?

Answer

Correct Answer: Facts about the everyday world

Note: This Question is unanswered, help us to find answer for this one

91. What did McCarthy name his program?

Answer

Correct Answer: Advice Taker

Note: This Question is unanswered, help us to find answer for this one

92. What is a machine used for combining responses of multiple neural networks?

Answer

Correct Answer: Committee machine

Note: This Question is unanswered, help us to find answer for this one

93. What is the combined response of a committee machine supposed to be?

Answer

Correct Answer: Superior to those of its constituent experts

Note: This Question is unanswered, help us to find answer for this one

94. What field is combinatorial optimization related to?

Answer

Correct Answer: Operations Research

Note: This Question is unanswered, help us to find answer for this one

95. What is a topic that consists of finding an optimal object from a finite set of objects?

Answer

Correct Answer: Combinatorial optimization

Note: This Question is unanswered, help us to find answer for this one

96. What is combinatorial optimization a topic that consists of?

Answer

Correct Answer: Finding an optimal object

Note: This Question is unanswered, help us to find answer for this one

97. Cognitive science is an interdisciplinary scientific study of what?

Answer

Correct Answer: The mind and its processes

Note: This Question is unanswered, help us to find answer for this one

98. What is the interdisciplinary scientific study of the mind and its processes?

Answer

Correct Answer: Cognitive science

Note: This Question is unanswered, help us to find answer for this one

99. Who invented COBWEB?

Answer

Correct Answer: Douglas H. Fisher

Note: This Question is unanswered, help us to find answer for this one

100. Where is COBWEB currently located?

Answer

Correct Answer: Vanderbilt University

Note: This Question is unanswered, help us to find answer for this one

search