9класс python

9класс python

9th - 10th Grade

9 Qs

quiz-placeholder

Similar activities

Advance Python

Advance Python

KG - Professional Development

10 Qs

Python Programming

Python Programming

7th - 9th Grade

10 Qs

Introduction to Programming

Introduction to Programming

9th Grade

12 Qs

KODEKIDDO HACK #MLH3

KODEKIDDO HACK #MLH3

4th Grade - University

10 Qs

Lý thuyết về Python

Lý thuyết về Python

3rd Grade - University

10 Qs

Python - Week 1

Python - Week 1

8th - 10th Grade

10 Qs

Understanding Python Variables and Data Types

Understanding Python Variables and Data Types

9th Grade

8 Qs

Variables and data types

Variables and data types

4th - 12th Grade

12 Qs

9класс python

9класс python

Assessment

Quiz

Computers

9th - 10th Grade

Medium

Created by

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

Used 43+ 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