Codify: Code Innovators

Codify: Code Innovators

9th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Axios in Vue 3

Axios in Vue 3

12th Grade - University

10 Qs

Python Syntax

Python Syntax

11th Grade

10 Qs

10 Important Python Fundamentals Questions

10 Important Python Fundamentals Questions

12th Grade

10 Qs

SmartNotes 3

SmartNotes 3

9th - 12th Grade

8 Qs

Lớp 10 - Nhận biết lỗi chương trình

Lớp 10 - Nhận biết lỗi chương trình

9th - 12th Grade

10 Qs

11th Class Python Basics

11th Class Python Basics

11th Grade

10 Qs

Python Basics Test

Python Basics Test

12th Grade

10 Qs

Python Random

Python Random

12th 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