Python tablice pozycje

Python tablice pozycje

9th Grade

9 Qs

quiz-placeholder

Similar activities

ICT DEVICES

ICT DEVICES

7th - 9th Grade

10 Qs

Intro to Software and Technology Test review

Intro to Software and Technology Test review

9th Grade

11 Qs

Binary to Decimal

Binary to Decimal

9th Grade

7 Qs

Programming Basics

Programming Basics

9th Grade

10 Qs

Von Neumann

Von Neumann

1st - 9th Grade

10 Qs

WDP Python S1 Q1

WDP Python S1 Q1

6th - 12th Grade

14 Qs

Crash Course Computer Science #25 - Personal Computer Revolution

Crash Course Computer Science #25 - Personal Computer Revolution

9th - 12th Grade

12 Qs

Python tablice pozycje

Python tablice pozycje

Assessment

Quiz

Computers

9th Grade

Hard

Created by

KP KP

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

computer_parts = ["keyboards", "expansion card", "screen", "motherboard"]

print(computer_parts == computer_parts[::])

Co będzie wynikiem działania programu

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

computer_parts = ["keyboards", "expansion card", "screen", "motherboard"]

print(computer_parts[-1] == computer_parts[3])

Co będzie wynikiem działania programu

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

computer_parts = ["keyboards", "expansion card", "screen", "motherboard"]

print(computer_parts[-2] == computer_parts[2])

Co będzie wynikiem działania programu

True

False

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

computer_parts = ["keyboards", "expansion card", "screen", "motherboard"]

print(computer_parts[-3] == computer_parts[1])

Co będzie wynikiem działania programu

True

False

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

computer_parts = ["keyboards", "expansion card", "screen", "motherboard"]

print(computer_parts[-2])

Co wyświetli się na ekranie

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

computer_parts = ["keyboards", "expansion card", "screen", "motherboard"]

print(len(computer_parts))

Co wyświetli się na ekranie

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

computer_parts = []

print(len(computer_parts))

Co wyświetli się na ekranie

8.

FILL IN THE BLANK QUESTION

1 min • 1 pt

sizes = ["M", "L", "XL"]

print("L" in sizes)

Co wyświetli się na ekranie?

9.

FILL IN THE BLANK QUESTION

1 min • 1 pt

sizes = ["M", "L", "XL"]

print("S" in sizes)

Co wyświetli się na ekranie?