Codify: Code Innovators

Codify: Code Innovators

9th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Input Devices of Computer

Input Devices of Computer

11th Grade

10 Qs

Computer System

Computer System

8th - 9th Grade

10 Qs

PERANGKAT UNTUK MENGAKSES INTERNET - KELAS IX

PERANGKAT UNTUK MENGAKSES INTERNET - KELAS IX

9th Grade

10 Qs

Google Apps

Google Apps

4th - 12th Grade

10 Qs

Evaluasi Materi Teknologi Informasi

Evaluasi Materi Teknologi Informasi

1st - 10th Grade

10 Qs

AIJ XI TKJ

AIJ XI TKJ

11th Grade

10 Qs

POST TES INFORMATIKA BAB 2

POST TES INFORMATIKA BAB 2

9th Grade

10 Qs

Pengenalan Perwakilan Data

Pengenalan Perwakilan Data

12th Grade

10 Qs

Codify: Code Innovators

Codify: Code Innovators

Assessment

Quiz

Computers

9th - 12th Grade

Practice Problem

Easy

Created by

Codify undefined

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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