Codify: Code Innovators

Codify: Code Innovators

9th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Web Development - Lesson 11 - Retrieval

Web Development - Lesson 11 - Retrieval

11th Grade

10 Qs

9.3 L3 Python Lists

9.3 L3 Python Lists

7th - 10th Grade

10 Qs

Python Intro

Python Intro

8th - 9th Grade

10 Qs

Python Exception Handling

Python Exception Handling

10th - 12th Grade

10 Qs

Python

Python

10th - 11th Grade

10 Qs

Flutter Intermediate

Flutter Intermediate

KG - Professional Development

10 Qs

KS3 GCSE Computer Science (Programming / Python)

KS3 GCSE Computer Science (Programming / Python)

7th - 11th Grade

10 Qs

KS3 Year 9 Python Quiz 02

KS3 Year 9 Python Quiz 02

10th Grade

8 Qs

Codify: Code Innovators

Codify: Code Innovators

Assessment

Quiz

Computers

9th - 12th Grade

Easy

Created by

Codify undefined

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

OPEN ENDED QUESTION

10 mins • 5 pts

Write a program to calculate the sum of all even numbers from 1 to 20.

Code Acceptance (Python/C++)

Evaluate responses using AI:

OFF

2.

OPEN ENDED QUESTION

10 mins • 5 pts

Write a Python program to sort an array of numbers.
Input: [5, 2, 9, 1]
Output: [1, 2, 5, 9]

Code Acceptance (C++/Python)

Evaluate responses using AI:

OFF

3.

OPEN ENDED QUESTION

10 mins • 5 pts

Write a Python program to sort an array of numbers.
Input: [5, 2, 9, 1]
Output: [1, 2, 5, 9]

Code Acceptance (C++/Python)

Evaluate responses using AI:

OFF

4.

OPEN ENDED QUESTION

10 mins • 5 pts

OOP: Create a class Student with attributes for name, age, and marks. Write a method to display the student’s details.

(C++/Python)

Evaluate responses using AI:

OFF

5.

MULTIPLE CHOICE QUESTION

10 mins • 5 pts

You are using the following API to fetch data:

fetch("https://api.example.com/data") .then((response) => response.json()) .then((data) => console.log(data)) .catch((error) => console.error("Error:", error));

What does the .json() method do?

Converts the JSON data to an HTML format

Parses the response into a JavaScript object.

Sends a POST request to the server.

Encrypts the response for secure handling