Codify: Code Pioneers

Codify: Code Pioneers

9th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Introduction to PHP: Hypertext Preprocessor

Introduction to PHP: Hypertext Preprocessor

11th - 12th Grade

10 Qs

APCSU01D02 Errors

APCSU01D02 Errors

12th Grade

10 Qs

dasar c++

dasar c++

10th Grade

10 Qs

Mastering String Operations in Python

Mastering String Operations in Python

9th Grade - University

10 Qs

Lớp 10: Câu hỏi TN củng cố kiến thức

Lớp 10: Câu hỏi TN củng cố kiến thức

10th Grade

10 Qs

PHP Basic

PHP Basic

11th Grade

10 Qs

Exploring Python: Input and Output Essentials

Exploring Python: Input and Output Essentials

9th Grade - University

10 Qs

PLTW 8th Grade Course Quiz

PLTW 8th Grade Course Quiz

8th Grade - University

10 Qs

Codify: Code Pioneers

Codify: Code Pioneers

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Dua Zakir

FREE Resource

5 questions

Show all answers

1.

OPEN ENDED QUESTION

10 mins • 5 pts

Design an algorithm to calculate the sum of numbers in a list.
Input: [1, 2, 3, 4]
Output: 10

Evaluate responses using AI:

OFF

2.

OPEN ENDED QUESTION

10 mins • 5 pts

Write the HTML code to display a heading, a paragraph, and a list of your favorite hobbies.

Evaluate responses using AI:

OFF

3.

DRAW QUESTION

10 mins • 5 pts

Create a game character that moves when pressing the arrow keys.

Media Image

4.

MULTIPLE CHOICE QUESTION

10 mins • 5 pts

Which SQL query is used to retrieve the names of all students who scored above 80.

SELECT Name FROM Students WHERE Grade > 80;

SELECT Name, Grade FROM Students;

SELECT * FROM Students WHERE Grade >= 80;

DELETE FROM Students WHERE Grade > 80;

5.

MULTIPLE CHOICE QUESTION

10 mins • 5 pts

What will the following Python code output?

def greet(name, age=10): print(f"Hello {name}, you are {age} years old.") greet("Ali")

Hello Ali, you are 10 years old.

Hello Ali, you are unknown years old.

Hello Ali, you are None years old.

Error