ARTIFICIAL INTELLIGENCE MCQ SET 4


31. What is a Cybernetics?

(a) Study of communication between two machines
(b) Study of communication between human and machine
(c) Study of communication between two humans
(d) Study  of Boolean values
Answer : (b)

Reason  :       Cybernetics is Study of communication between human and machine


 

32. What is the goal of artificial intelligence?

(a) To solve real-world problems
(b) To solve artificial problems
(c) To explain various sorts of intelligence
(d) To extract scientific causes
(e) To restrict problems.
33. An algorithm is complete if

(a) It terminates with a solution when one exists
(b) It starts with a solution
(c) It does not terminate with a solution
(d) It has a loop
Answer : (a)

Reason  :       An Algorithm is complete if It terminates with a solution when one exists.


34. Which is true regarding BFS?

(a) BFS will get trapped exploring a single path
(b) The entire tree so far been generated must be stored in BFS
(c) BFS is not guaranteed to find a solution, if exists
(d) BFS is nothing but Binary First Search
Answer : (b)

Reason  :       Regarding BFS-The entire tree so far been generated must be stored in BFS.


35. What is a heuristic function?

(a) A function to solve mathematical problems
(b) A function which takes parameters of type string and returns an integer value
(c) A function whose return type is nothing
(d) A function which returns an object
(e) A function that maps from problem state descriptions to measures of desirability.

Answer : (e)

Reason  :       Heuristic function is a function that maps from problem state descriptions to measures of desirability


36. The traveling salesman problem involves n cities with paths connecting the cities. The time taken for traversing through all the cities, without knowing in advance the length of a minimum tour, is

(a) O(n)
(b) O(n2)
(c) O(n!)
(d) O(n/2)
Answer : (c)

Reason  :       The traveling salesman problem involves n cities with paths connecting the cities. The time       taken for traversing through all the cities, without knowing in advance the length of a minimum tour, is O(n!)


 

37. The problem space of means-end analysis has

(a) An initial state and one or more goal states
(b) One or more initial states and one goal state
(c) One or more initial states and one or more goal state
(d) One initial state and one goal state
Answer : (a)

Reason  :       The problem space of means-end analysis has an initial state and one or more goal states


38. An algorithm A is admissible if

(a) It is not guaranteed to return an optimal solution when one exists
(b) It is guaranteed to return an optimal solution when one exists
(c) It returns more solutions, but not an optimal one
(d) It guarantees to return more optimal solutions
 

Answer : (b)

Reason  :       An algorithm A is admissible if It is guaranteed to return an optimal solution when one exists.


39. Knowledge may be

I.     Declarative.

II.     Procedural.

III.    Non-procedural.

(a) Only (I) above
(b) Only (II) above
(c) Only (III) above
(d) Both (I) and (II) above
Answer : (d)

Reason  :       Knowledge may be declarative and  procedural

40. Idempotency law is

I.     P Ú P = P.

II.     P Ù P = P.

III.    P + P = P.

(a) Only (I) above
(b) Only (II) above
(c) Only (III) above
(d) Both (I) and (II) above
Answer : (a)

Reason  :       Idempotency Law is P V P = P

Leave a comment