JH-Coding Exam

JH-Coding Exam

8th - 9th Grade

9 Qs

quiz-placeholder

Similar activities

Лазарус, події

Лазарус, події

8th Grade

12 Qs

Quiz 9 (15.09.2021)

Quiz 9 (15.09.2021)

1st - 12th Grade

10 Qs

Technology Week HTG Quiz - Monday

Technology Week HTG Quiz - Monday

7th - 12th Grade

10 Qs

TIN 6 THU NHẬN THÔNG TIN

TIN 6 THU NHẬN THÔNG TIN

6th - 9th Grade

12 Qs

Thinglink

Thinglink

9th - 12th Grade

10 Qs

Recording Software Button Identification Quiz

Recording Software Button Identification Quiz

8th Grade - University

10 Qs

Nhập môn HTML

Nhập môn HTML

6th - 9th Grade

13 Qs

media transmisyjne

media transmisyjne

9th Grade

10 Qs

JH-Coding Exam

JH-Coding Exam

Assessment

Quiz

Computers

8th - 9th Grade

Practice Problem

Medium

function, array, turtle

Standards-aligned

Created by

HS Mok

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

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

9 questions

Show all answers

1.

OPEN ENDED QUESTION

10 mins • 1 pt

Media Image

We have a TicTacToe game, assume each box has been marked 1-9. Assume if player array = [1,2,5,9], please write the statement to check if player contains 1,5,9 numbers. This is one of the statement inside is_winner() function. (Note: Only Press Enter if you finish write your answer completely)

Evaluate responses using AI:

OFF

Answer explanation

if ( ... )

Tags

function

2.

MULTIPLE SELECT QUESTION

10 mins • 1 pt

Media Image

Select which items describe the get_index(x, y) function in the picture. (Answer more than 1)

(x,y) is the screen coordinate of the mouse event

This function will return the box index of coordinate (x,y)

get_index(60, 60) will return 3.

get_index(0, 0) return False

Tags

function

3.

MULTIPLE SELECT QUESTION

2 mins • 1 pt

Select the correct statements about function. (Answer more than 1)

Prevent duplicate of statements

Function can be reused for multiple times just by calling the name

Block of statements that perform a specific task

Function will be automatically run without calling the function name

Tags

function

4.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Media Image

Select which statements are wrong.

If we click the screen 3 times, the sprite will forward for 150 steps

Variable x, y inside the mouse_click function is the mouse coordinate

screen.onkey is used to listen for mouse click

Every time we click the screen, function mouse_click will be run

Tags

function

turtle

5.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Media Image

Select which items are correct about the code beside

my_array becomes [1,3,4,10]

my_array becomes [1,2,3,4,10]

my_array becomes [1,3,4]

my_array becomes[1,2,3,4]

Tags

array

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What is the elements of my_array ?

[1,2,3,4,5,6,7,8,9,10]

[0,2,4,6,8]

[1,3,5,7,9]

[0,2,4,6,8,10]

Tags

array

7.

MULTIPLE SELECT QUESTION

10 mins • 1 pt

Media Image

Select the correct items. (Answer more than 1)

result is [1,2,2,3,4]

result is [1,2,3,4]

'in' operator is used to check if the array has specific value

'not in' is the opposite of 'in' operator

Tags

array

function

8.

OPEN ENDED QUESTION

10 mins • 1 pt

Media Image

Write down a line of statement to insert the input data into array (my_array variable). Remember the data must be in integer. (Note: Only Press Enter if you finish write your answer completely)

Evaluate responses using AI:

OFF

Tags

array

9.

OPEN ENDED QUESTION

15 mins • 1 pt

Media Image

I have a function1() but has some problems. The expected of function1(3) should be 1+2+3 = 6. But, this function1( ) return 2. How to fix this function ?

Evaluate responses using AI:

OFF

Answer explanation

You can try calling function1(3), function1(4), function1(5) to find the pattern or use the debugger tools in replit.

Tags

function