Codify: Code Innovators

Codify: Code Innovators

9th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Firebase Quiz Siklus 2

Firebase Quiz Siklus 2

11th Grade

10 Qs

Python Revision Tour

Python Revision Tour

12th Grade

10 Qs

Dasar Pemrograman Python

Dasar Pemrograman Python

9th Grade

10 Qs

Python-list,tuple,Dictionary

Python-list,tuple,Dictionary

11th - 12th Grade

7 Qs

Flutter Intermediate

Flutter Intermediate

KG - Professional Development

10 Qs

Python L2- Quiz 6

Python L2- Quiz 6

5th - 12th Grade

6 Qs

Introduction to Python Programming Quiz

Introduction to Python Programming Quiz

10th Grade

10 Qs

Mock Test of Python Basics

Mock Test of Python Basics

11th Grade

10 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