Guideline exam 1 Flashcards

1
Q

What is AI?

A

Artificial intelligence(AI) isintelligencedemonstrated bymachines, in contrast to thenatural intelligencedisplayed by human and other animals.

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

How does a computer pass the turing test?

A

A computer passes the test if a human interrogator, after posing some written questions, cannot tell if the written responses come from a person or from a computer.

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

Total turing test?

A

should have additional capabilities:
Computer vision: perceive objects
Robotics: manipulate objects and move about

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

Four categories of AI

A

Thinking Humanly, Thinking Rationally, Acting Humainly, Acting Rationally

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

Thinking humanly

A

If input-output behavior matches corresponding human behavior

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

Acting humanly

A

Passing turing test

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

Acting rationally

A

The right thing: that which is expected to maximize goal achievement, given the available information

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

What is ML?

A

Machine learning is the science of getting computers to act without being explicitly programmed.

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

Relation between AI, ML, Representation Learning, and Deep Learning?

A
AI(
    ML(
        RL(
            DL()
         )  
    )
)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Rationality?

A

A rational agent selects an action that is expected to maximize its performance measure, given the evidence provided by the percept sequence and built-in knowledge in agent

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

PEAS and what are they?

A

Performance: The performance measure that defines the criteria of success

Environment: The agent’s prior knowledge of the environment

Actuator: The actions that the agent can perform

Sensor: The agent’s percept sequence to date

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

5 structures of intelligent agents

A

Simple reflex agents

Reflex agents with state

Goal-based agents

Utility-based agents

Learning Agent

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

DFS Space complexity

A

O(bm)

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

BFS Space complexity

A

O(b^(d+1))

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

DFS time complexity

A

O(b^m)

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

BFS time complexity

A

O(b^(d+1))

17
Q

Iterative Deepening Time

A

O(b^d)

18
Q

Iterative Deepening Space

A

bd

19
Q

Depth-Limited time

A

b^l

20
Q

Depth-Limited space

A

bl