NEW
Font size
WorksheetsIX AI
Total questions: 10
Worksheet time: 34mins
Which one is NLP based application
Google Lens
Amazon Alexa
Predictive analytical tools
A self driving car is an example of
Machine Learning
Deep Learning
Combination of Both
Many people question whether an AI can make ethical decisions. What do we mean by ETHICS?
The laws of particular country
The rules of behaviour imposed by a programmer or the AI creator
A set of moral principles
Human emotions
Which of the following is not an example of AI machine.
What data type is "67" ?
string
int
float
boolean
What is the output of running this code?
8
100
bananas
231
What does the following code do? myAge = int (myAge)
Converts the var (variable) myAge to a string
Converts the var (variable) myAge to a integer
Converts the var (variable) myAge from a integer to a string
Converts the var (variable) myAge to if statement
What is the syntax error with this code:
print(“Hello World”);
No brackets around "Hello World"
Speech marks are not needed
Colon is not needed
print is spelt incorrectly
Print has a capital P
Which of the following is a correct way to name a variable?
1st_name = Steve
first name = Steve
first_Name = Steve
1st name = Steve
What will be the output of the following code?
x = 2
y = 3
print(x)
x = x + y
print(x)
2
5
2
5
2
3
It will produce an error.
