Search Header Logo

Python - palindrom, tekst, do zadań losowych

Authored by KP KP

Computers

9th Grade

Used 4+ times

Python - palindrom, tekst, do zadań losowych
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

13 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

Aby zamienić liczbę dziesiętną na binarną użyjesz funkcji:

2.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

Aby zamienić liczbę dziesiętną na szesnastkową użyjesz funkcji:

3.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

Aby zamienić liczbę dziesiętną na ósemkową użyjesz funkcji:

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Aby wypisać pierwszą literę zmiennej nazwisko:

nazwisko = "Rossum"

print(nazwisko[-1])

print(nazwisko[0])

print(nazwisko[:1])

print(nazwisko[1:])

Answer explanation

To print the first letter of the variable 'nazwisko', use print(nazwisko[0]). This will access the first character 'R' in the string 'Rossum'.

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Aby wypisać ostatnią literę zmiennej nazwisko:

nazwisko = "Rossum"

print(nazwisko[-1])

print(nazwisko[0])

print(nazwisko[:1])

print(nazwisko[1:])

Answer explanation

To print the last letter of the variable 'nazwisko', use 'print(nazwisko[-1])'. This will access the last character in the string 'Rossum'.

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Aby wypisać pierwszych 5 znaków zmiennej nazwisko:

nazwisko = "Guido van Rossum"

wybierz wszystkie poprawne

print(nazwisko[:-1])

print(nazwisko[5:])

print(nazwisko[0:5])

print(nazwisko[:5])

Answer explanation

To print the first 5 characters of the variable 'nazwisko', you can use print(nazwisko[0:5]) or print(nazwisko[:5]). These slices will output 'Guido'.

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Aby wypisać nazwisko od końca:

nazwisko = "Guido van Rossum"

print(nazwisko[::-1])

print(nazwisko[:-1])

print(nazwisko[-1:])

print(nazwisko[:-1])

Answer explanation

The correct choice is print(nazwisko[::-1]) because using the slicing syntax [::-1] allows us to reverse the string 'Guido van Rossum'.

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?