wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

IX AI

Total questions: 10

Worksheet time: 34mins

Name
Class
Date
1.

Which one is NLP based application

a)

Google Lens

b)

Amazon Alexa

c)

Predictive analytical tools

2.

A self driving car is an example of

a)

Machine Learning

b)

Deep Learning

c)

Combination of Both

3.

Many people question whether an AI can make ethical decisions. What do we mean by ETHICS?

a)

The laws of particular country

b)

The rules of behaviour imposed by a programmer or the AI creator

c)

A set of moral principles

d)

Human emotions

4.

Which of the following is not an example of AI machine. 

a)
b)
c)
d)
5.

What data type is "67" ?

a)

string

b)

int

c)

float

d)

boolean

6.

What is the output of running this code?

a)

8

b)

100

c)

bananas

d)

231

7.

What does the following code do? myAge = int (myAge)

a)

Converts the var (variable) myAge to a string

b)

Converts the var (variable) myAge to a integer

c)

Converts the var (variable) myAge from a integer to a string

d)

Converts the var (variable) myAge to if statement

8.

What is the syntax error with this code:

print(“Hello World”);

a)

No brackets around "Hello World"

b)

Speech marks are not needed

c)

Colon is not needed

d)

print is spelt incorrectly

e)

Print has a capital P

9.

Which of the following is a correct way to name a variable?

a)

1st_name = Steve

b)

first name = Steve

c)

first_Name = Steve

d)

1st name = Steve

10.

What will be the output of the following code?

x = 2

y = 3

print(x)

x = x + y

print(x)

a)

2

b)

5

c)

2

5

d)

2

3

e)

It will produce an error.