Font size
WorksheetsAI Midterm
Total questions: 63
Worksheet time: 1hrs 25mins
Which one of these is not an area of AI?
computer vision/image recognition
voice recognition
web design
robotics
What is A.I?
Intelligence demonstrated by machines
Smart robots
Anthony Ian
I don't know
What technology enables thinking capability in computers?
Deep Learning
Artificial Intelligence
AGI
None of the above
Weak AI is designed for a specific task
true
false
The term A.I is short for?
Anatomy Insector
Astrology Iselin
Anh Intelligence
Artificial Intelligence
Antificial Intelligence
What is this?
artificial intelligence
algorithm
neural network
(Multiple Choose) Choose AI Factors
Data
Sophia
Machine Learning
Natural Language Processing
Robotics
___________________________ is to read, decipher, understand, and make sense of the human languages in a manner that is valuable.
Natural Language Processing
Machine Learning
Computer Vision
Why do machines demonstrate artificial intelligence?
Because machines are not really intelligent compare to humans.
Because machines are capable of doing tasks for humans by programming them with a specific information.
Because machines are useful and relevant in our daily lives.
Because machines give you artificial information which are important.
How does artificial intelligence become useful to society?
It becomes helpful in completing tasks quickly and efficiently thus producing more products
It becomes helpful in completing tasks quickly thus makes people lazy
It becomes helpful in making task easier and less efficient resulting to the boost of economy.
It helps us to complete our task.
In what way can artificial intelligence become harmful?
Excessive use of AI makes people lazy since they rely too much on it.
By using AI as a weapon in wars, many innocent lives will be affected.
AI replaces the human force resulting to less job opportunities to human workers.
AI programmed devices are harmful through the radiation it produces.
How does A.i work?
Combining large amounts of data with fast processing and intelligent algorithms, allowing the software to learn automatically from patterns or features in the data.
The computation, mostly on computers, of antiderivatives and definite integrals in term of formulas
It just works you know??
Another super duper long answer to fool you guys to prove that not all longest answers are the correct ones, how is my quiz going anyway, i hope it is good, hope it is not too long though, thank you for not clicking
machine learns from examples or experiences. We need to provide training data with correct outcomes (e.g. types of animals) for the machine to ______. After learning from the training data, a predictive model is generated for the machine to make future predictions.
exam
test
practice
learn
Artificial Intelligence is superset of ________________________ & ________________________ ,
Machine Learning & Neural Networks
Machine Learning & Deep Learning
Deep Learning & Neural Networks
This requires computer scientists to formulate general-purpose learning algorithms that help machines learn more than just one task.
Machine Learning
Deep Learning
Neural Networks
All three of these AI concepts – machine learning, deep learning, and neural networks – can enable hardware and software robots to “think” and act dynamically, outside the confines of _______________.
Code
Human Brain
Which of the following terms best describes the code above?
function call
function definition
Rewrite this line of code correctly!
(a)
Rewrite this line of code correctly!
(Hint: combine the words 'draw' and 'shape' into one word)
(a)
print("Hello world!")
print("3+4")
print(Hello world!)
A
B
C
D
A
B
C
D
A
B
C
D
What is the output?
condition
True
Program has a syntax error.
3 > 2
What is the output?
more than 7
more than 23
spam
7
An If statement can be executed multiple times
FALSE
TRUE
What is the output?
Hello world!
Hello world!
Hello world!
Hello world!
Hello world!
......(repeated continuously)
What is the output if the user types "Python"?
In programming, what is iteration?
The repetition of steps within a program
The order in which instructions are carried out
A decision point in a program
Testing a program to make sure it works
Which kind of loop would be used?
I need a guessing game program that will let me keep guessing until I get the right answer.
FOR Loop
WHILE Loop
Which kind of loop would be used?
I need a revision program that will run through revision questions 4 times.
FOR Loop
WHILE Loop
What does this code print?
A
B
C
A
C
A
A
B
What does the code print?
B
C
A
C
B
A
C
What does the code print?
10 stars, then the word "Done"
4 stars, then the word "Done"
Just the word "Done"
Infinitely many stars
Which of the names below follows all the naming rules?
my_function
Draw A Circle
4_circles
make_square
Look at the following code:
name = "John"
age = 23
What type of data is stored in the variable name?
str
int
float
nothing
Look at the following code:
name = "John"
age = 23
What type of data is stored in the variable age?
str
int
float
nothing
If I want to store my name in a variable, which of the following would be a good variable name in best practice?
name
teacher
mister
abcdef
Look at the following code:
age = "23"
age = int(age)
What does the int() function do to the data in my variable?
does nothing
changes the string to a float
changes the number to a string
changes the string to an integer
Select all strings:
greeting = (Hello)
greeting = ("Please enter your name")
greeting = (Welcome to Comp Sci)
greeting = ("Happy Friday!!!")
Please select all floating point numbers:
1.444
34567
777.980
32.0
21
What is the output of the following
x='5'
y='6'
print(x+y)
(a)
What are algorithms used for?
To plan out the solution to a problem
As a platform to program a solution
To test a solution to a problem
Which symbol is used to add a comment in Python?
/
//
#
@
