Chapter 13--artificial Intelligence Flashcards

0
Q

Which kind of ambiguity does this sentence have–lexical, referential, or syntactical? “Go down the street on the left.”

A

Syntactic– left could refer to the street that is located on your left, or to walk down the left side of the street that you are on.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

Which kind of ambiguity does this sentence have–lexical, referential, or syntactical? “Stand up for your flag.”

A

Referential–it isn’t clear who the pronoun “your” refers to.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which kind of ambiguity does this sentence have–lexical, referential, or syntactical? “He drove the car over the lawn mower, but it wasn’t hurt.”

A

Referential–which did the pronoun “it” refer to, the lawn mower or the car?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which kind of ambiguity does this sentence have–lexical, referential, or syntactical? “I saw the movie flying to Houston.”

A

Syntactical– which was flying, you or the movie?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which kind of ambiguity does this sentence have–lexical, referential, or syntactical? “Mary and Kay were playing until she came inside.”

A

Referential– who came inside, Mary or Kay? The pronoun “she” isn’t clear.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

True/false–a computer does some tasks much better than a human.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

True/false–a human does some tasks much better than a computer.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

True/false–a computer that can pass the Turing test is considered to be intelligent.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

True/false–Some AI researchers don’t think we can achieve true artificial intelligence until a computer processes info in the same way a human mind does.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

True/false–a semantic network is used to model relationships.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

True/false–If info is stored in a semantic network, it is easy to answer questions about it.

A

False. It depends on the situation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

True/false–a computer has never beaten a human at master-level chess play.

A

False.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

True/false–am inference engine is part of a rule-based expert system.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

True/false–a biological neuron accepts a single input signal and produces multiple output signals.

A

False, it does the opposite

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True/false–Each element in an artificial neural network is affected by a numerical weight.

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

True/false–Voice synthesis is the most difficult part of natural language processing.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

True/false–Each human has a unique voiceprint that can be used to train voice recognition systems.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

True/false–the word “light” can be interpreted in many ways by a computer.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

True/false–syntactic ambiguity is no longer a problem for natural language comprehension.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Fill in the blank– a robot may follow the _______ paradigm to control it’s movements.

A

Sense-plan-act

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Who created the 3 fundamental laws of robotics?

A

Isaac Asimov

21
Q

How is the Turing test organized and administered?

A

Hugh Loebner started in 1991. Grand prize $100k, responses must be indistinguishable from a human’s.

22
Q

Name and define 2 knowledge- representation techniques.

A

Semantic network–a knowledge representation technique that focuses on the relationships between objects.

Search tree–a structure that represents all possible moves in a game, for all players in the game.

23
Q

Which object-oriented properties do semantic networks borrow?

A

Relationships. Like in an entity-relationship diagram. Also inheritance and instantiation.

24
Q

Distinguish between depth-first and breadth-first searching.

A

Breadth-first checks all options on each level of a search tree before going to the next level. Depth-first checks only one option per level before going deeper to the next level down that specific path.

25
Q

What is meant by pruning a search tree?

A

Removing options that no human player would consider reasonable.

26
Q

Distinguish between knowledge-based systems and expert systems.

A

Expert systems are a type of knowledge-based system that uses collected knowledge of human experts to design its if-then rules. Knowledge-based systems are basically rules-based systems that used if-then statements to come up with answers. Broadly-speaking, they are software that uses a specific set of information.

27
Q

Distinguish between rule-based systems and inference engines.

A

Inference engines are the software that processes if-then queries in a rule-based system.

28
Q

Why is an expert system called a rule-based system?

A

Because the system works by using rules based around if-then statements which are themselves based on the experts’ collective knowledge.

29
Q

Which part of the software in an expert system determines how the rules are followed and what conclusions can be drawn?

A

The inference engine

30
Q

How are the rules expressed in an expert system?

A

As if-then statements

31
Q

What do we call a single cell that conducts a chemically-based electronic signal?

A

Neuron

32
Q

What do a series of connected neurons form?

A

A neural network

33
Q

Upon what does the signal along a particular pathway depend?

A

The chemical composition of the synapse

34
Q

What are the multiple input tentacles in a biological neuron called?

A

Dendrites

35
Q

What is the output tentacle in a biological neuron called?

A

Axon

36
Q

From where do dendrites of one neuron pick up the signals from other neurons to form a network?

A

The synapses

37
Q

What do we call the gap between an axon and a dendrite?

A

A synapse

38
Q

What tempers the strength of a synapse?

A

Its chemical composition

39
Q

What is the role of a synapse?

A

To temper the strength of signals, and carry those same signals from an axon of one neuron to a dendrite of another neuron

40
Q

How is a synapse modeled in an artificial neural network?

A

By numerical weighting of the signal

41
Q

What is an effective weight in an artificial neuron?

A

All the inputs multiplied by their effective weights, then added together

42
Q

How is the output value from an artificial neuron calculated?

A

By checking the effective weight against the threshold value. If the effective weight is lower than the threshold value, a weak signal is output. If the reverse, a strong signal is output.

43
Q

What is a phoneme?

A

One of the basic sounds that are used in a particular natural language

44
Q

Which issues affect the ability to recognize the words spoken by a human voice?

A

Accent, speech impediments, mumbling, volume, health of the speaker

45
Q

How can a voice recognition system be trained?

A

By having a person speak a word several times so the computer can record an average voiceprint from that person. Later speech from that same person can be compared against those voiceprints

46
Q

Name and describe two types of robots.

A

Fixed robots and mobile ones

47
Q

What are planning systems?

A

Large software systems that take a given goal, a starting position, and an ending situation, can generate a finite set of actions (plan) that bring about the desired ending situation, if followed.

48
Q

Define “subsumption architecture”.

A

A set of orders or directions that are prioritized. When orders conflict with each other, then the order with the highest priority is executed.

49
Q

What makes up a robot?

A

Sensors, actuators, and computational elements.