9класс python

9класс python

9th - 10th Grade

9 Qs

quiz-placeholder

Similar activities

Program Development - Python: Errors

Program Development - Python: Errors

8th - 10th Grade

13 Qs

Introduction to Python Programming Quiz

Introduction to Python Programming Quiz

10th Grade

10 Qs

Unit 7 quiz on strings AP CSP

Unit 7 quiz on strings AP CSP

9th - 12th Grade

14 Qs

Python Basics

Python Basics

6th - 12th Grade

9 Qs

10.4 Python Lists

10.4 Python Lists

7th - 10th Grade

14 Qs

Unit 8 CodeHS Computer Science Essentials

Unit 8 CodeHS Computer Science Essentials

10th - 12th Grade

12 Qs

CodeHS

CodeHS

10th - 12th Grade

12 Qs

CodeHS APCSP Python

CodeHS APCSP Python

10th - 12th Grade

12 Qs

9класс python

9класс python

Assessment

Quiz

Computers

9th - 10th Grade

Medium

Created by

Нурболат Айтбеков

Used 41+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print("16+8")

15

16

incorrect

16+8

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

name="john"

print(name)

name

jon

john

incorrect

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

list=[1, "long", "sun",8, 16 ]

print(list[1])

1

16

long

sun

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

list=[1, 2, "sun", "apple"]

list[3]=9

print(list)

1 9 sun apple

1, 2 9 apple

1 2 sun 9

incorrect

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

list=[2, 3, 4]

print(list)

2 3 4

2,3,4

incorrect

list

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print(Hello, world)

Hello world

Hello World

incorrect

hello world

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

list=[1, 2, 3]

print(list[1])

print(list[2])

1

2

2

3

1

3

incorect

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

list=["apple", "banana", "orange" ]

list[1]= "sun"

print(list)

sun banana orange

apple banana sun

apple sun banana orange

apple sun orange

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print("Hello, my friend")

Hello my friend

Hello, friend

Hello, my friend

incorrect