Python tablice pozycje

Python tablice pozycje

9th Grade

9 Qs

quiz-placeholder

Similar activities

Python_P_F

Python_P_F

9th Grade

12 Qs

Computer Components

Computer Components

9th - 12th Grade

13 Qs

python

python

9th Grade

10 Qs

laptop and computers tech

laptop and computers tech

5th - 9th Grade

8 Qs

Python Basics

Python Basics

8th - 10th Grade

10 Qs

IGCSE Computer Science - Chapter 9: Problem-Solving and Design

IGCSE Computer Science - Chapter 9: Problem-Solving and Design

9th - 10th Grade

10 Qs

Python Input/Output

Python Input/Output

9th - 12th Grade

10 Qs

10 CS // Pseudocode

10 CS // Pseudocode

9th - 11th Grade

10 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?