8 задание

8 задание

11th Grade

10 Qs

quiz-placeholder

Similar activities

C#

C#

11th Grade

10 Qs

Big Idea 3

Big Idea 3

9th - 12th Grade

15 Qs

VB.NET Competition

VB.NET Competition

10th - 12th Grade

14 Qs

Estruturas de repetição /ciclos (For…Next ● While…End While

Estruturas de repetição /ciclos (For…Next ● While…End While

10th - 12th Grade

14 Qs

Unit 5 Review

Unit 5 Review

9th - 12th Grade

12 Qs

Code.org Unit 5 Data

Code.org Unit 5 Data

9th Grade - University

11 Qs

Lesson 5 Looping Quiz

Lesson 5 Looping Quiz

10th - 12th Grade

15 Qs

Большое Повторение C#

Большое Повторение C#

5th Grade - University

15 Qs

8 задание

8 задание

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Диана Гафарова

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Функция библиотеки itertools, которая возвращает: ('A', 'A', 'A', 'А'), ('A', 'A', 'A', 'Б'), ('A', 'A', 'A', 'Б')

2.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Функция библиотеки itertools, которая возвращает: ('A', 'Б', 'В', 'Г'), ('A', 'Б', 'В', 'Д'), ('A', 'Б', 'В', 'Е')

3.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Что выведет программа?

x = 89

s = ''

while x > 0:

s += str(x % 3)

x = x // 3

print(s)

0

22001

10022

1022

4.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Что выведет программа?

x = 89

s = ''

while x > 0:

s += str(x % 3)

x = x // 3

print(x)

0

22001

10022

1022

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

itertools.product() примерно эквивалентна вложенным циклам

while True
for...in...

6.

FILL IN THE BLANK QUESTION

30 sec • 2 pts

Метод, который отвечает за объединение списка строк

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Выберите верную запись:

from itertools import*
for x in product('1234', r = 6):

from itertools import
for x in product('1234', r = 6):

from itertools import*
for x in product('1234', repeat = 6):

from intertools import*
for x in product('1234', repeat = 6)

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?