wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

AI Quiz. Coding Club

Total questions: 12

Worksheet time: 8mins

Name
Class
Date
1.

Which of the following can Leonardo AI not generate?

a)

A) Fully functional mobile applications with backend logic

b)

B) Diagrams of company's industrial machinery

c)

C) Stylized anime character designs

d)

D) Photorealistic landscape paintings

2.

Which of the following can Midjourney not generate?

a)

A) AI-generated artwork from text prompts

b)

B) High-resolution digital illustrations

c)

C) Source code for a web application

d)

D) Stylized concept art based on specific themes

3.

Which of the following tasks can Gemini AI generate effectively?

a)

A) Writing complex programming scripts and algorithms for web applications

b)

B) Creating 3D animations and special effects for movies

c)

C) Predicting future stock market trends with guaranteed accuracy

d)

D) Personalized study plans and academic guidance based on individual learning goals

4.

Which of the following can ElevenLabs not generate?

a)

A) Realistic text-to-speech audio in multiple voices

b)

B) Custom AI voice clones based on a user’s sample

c)

C) Translated audio with voice preservation across languages

d)

D) Music tracks with instrumental and vocal arrangements

5.

Which of the following can Microsoft Copilot not generate?

a)

A) Summaries of long documents

b)

B) Images from text prompts

c)

C) Spreadsheets with suggested formulas

d)

D) Fully functional mobile apps for iOS and Android

6.

What distinguishes Midjourney from other image generation tools like DALL·E or Adobe Firefly?

a)

A) It generates video content from text

b)

B) It uses only publicly available datasets

c)

C) It runs primarily through Discord for prompt input and image generation

d)

D) It only supports black-and-white images

7.

Which of the following is a key difference between GPT-4 and GPT-4o, as developed by OpenAI?

a)

A) GPT-4o is only available for enterprise users, unlike GPT-4

b)

B) GPT-4o can process and understand audio, images, and text natively in one model

c)

C) GPT-4 has faster response times and is better at real-time conversation than GPT-4o

d)

D) GPT-4o is trained solely on programming code, while GPT-4 is general-purpose

8.

Which AI application is designed to assist in diagnosing medical conditions by analyzing medical images?

a)

A) DeepMind Health

b)

B) Runway ML

c)

C) Jasper AI

d)

D) Perplexity AI

9.

What is the data type of the result of this expression in python?
5 + 3.0

a)

A) Integer

b)

B) String

c)

C) Float

d)

D) Boolean

10.

Which one of these is not a valid Python variable name?

a)

A) score1

b)

B) _total

c)

C) 2fast

d)

D) total_marks

11.

What is the output of the following code?

a = 10

b = 5

a, b = b, a + b

print(a, b)

a)

A. 10, 15

b)

B. 5,15

c)

C. 10, 5

d)

D. 5, 10

12.

What does this print?

text = "Hello World"

print(text[::-2])

a)

A. "dloW olleH"

b)

B. "drWolH"

c)

C. "drWlH"

d)

D. "olleH"