WorksheetsAI Quiz. Coding Club
Total questions: 12
Worksheet time: 8mins
Which of the following can Leonardo AI not generate?
A) Fully functional mobile applications with backend logic
B) Diagrams of company's industrial machinery
C) Stylized anime character designs
D) Photorealistic landscape paintings
Which of the following can Midjourney not generate?
A) AI-generated artwork from text prompts
B) High-resolution digital illustrations
C) Source code for a web application
D) Stylized concept art based on specific themes
Which of the following tasks can Gemini AI generate effectively?
A) Writing complex programming scripts and algorithms for web applications
B) Creating 3D animations and special effects for movies
C) Predicting future stock market trends with guaranteed accuracy
D) Personalized study plans and academic guidance based on individual learning goals
Which of the following can ElevenLabs not generate?
A) Realistic text-to-speech audio in multiple voices
B) Custom AI voice clones based on a user’s sample
C) Translated audio with voice preservation across languages
D) Music tracks with instrumental and vocal arrangements
Which of the following can Microsoft Copilot not generate?
A) Summaries of long documents
B) Images from text prompts
C) Spreadsheets with suggested formulas
D) Fully functional mobile apps for iOS and Android
What distinguishes Midjourney from other image generation tools like DALL·E or Adobe Firefly?
A) It generates video content from text
B) It uses only publicly available datasets
C) It runs primarily through Discord for prompt input and image generation
D) It only supports black-and-white images
Which of the following is a key difference between GPT-4 and GPT-4o, as developed by OpenAI?
A) GPT-4o is only available for enterprise users, unlike GPT-4
B) GPT-4o can process and understand audio, images, and text natively in one model
C) GPT-4 has faster response times and is better at real-time conversation than GPT-4o
D) GPT-4o is trained solely on programming code, while GPT-4 is general-purpose
Which AI application is designed to assist in diagnosing medical conditions by analyzing medical images?
A) DeepMind Health
B) Runway ML
C) Jasper AI
D) Perplexity AI
What is the data type of the result of this expression in python?
5 + 3.0
A) Integer
B) String
C) Float
D) Boolean
Which one of these is not a valid Python variable name?
A) score1
B) _total
C) 2fast
D) total_marks
What is the output of the following code?
a = 10
b = 5
a, b = b, a + b
print(a, b)
A. 10, 15
B. 5,15
C. 10, 5
D. 5, 10
What does this print?
text = "Hello World"
print(text[::-2])
A. "dloW olleH"
B. "drWolH"
C. "drWlH"
D. "olleH"
