Liste i sortiranja

Liste i sortiranja

9th - 10th Grade

6 Qs

quiz-placeholder

Similar activities

Programiranje

Programiranje

9th Grade

6 Qs

Strukturalno programiranje C

Strukturalno programiranje C

10th - 11th Grade

4 Qs

BÀI 8. SẮP XẾP VÀ LỌC DỮ LIỆU

BÀI 8. SẮP XẾP VÀ LỌC DỮ LIỆU

1st - 12th Grade

10 Qs

Keyboarding Shortcuts

Keyboarding Shortcuts

3rd - 10th Grade

8 Qs

CS Academy Unit 2 Review

CS Academy Unit 2 Review

9th - 10th Grade

10 Qs

Grafičko sučelje - Tkinter

Grafičko sučelje - Tkinter

7th - 9th Grade

10 Qs

tulkarm club first comp

tulkarm club first comp

9th - 11th Grade

9 Qs

Liste i sortiranja

Liste i sortiranja

Assessment

Quiz

Computers

9th - 10th Grade

Medium

Created by

Tihomir Robotić

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Zadana je lista l = [5,7,2,9,1,4,3,6]

Koja naredba će ispisati šesti element liste?

print(l[4])

print(l[5])

print(l[6])

print(l(6))

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Koja naredba će ispravno razvrstati listu l?

sort(l)

l.sort()

sort[l]

l.sort[]

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Zadana je lista l = [1,2,3,4,5,6,7,8]

Što će ispisati naredba

for i in range(5,len(l)):

print(l[i])

5 6

6 7

5 6 7

6 7 8

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

Koji algoritam razvrstavanja je prikazan na slici?

Razvrstavanje zamjenom (Selection sort)

Razvrstavanje metodom mjehurića (Bubble sort)

Brzo razvrstavanje (Quick sort)

Razvrstavanje umetanjem (Insertion sort)

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

Koji algoritam razvrstavanja je prikazan na slici?

Razvrstavanje zamjenom (Selection sort)

Razvrstavanje metodom mjehurića (Bubble sort)

Brzo razvrstavanje (Quick sort)

Razvrstavanje umetanjem (Insertion sort)

6.

FILL IN THE BLANK QUESTION

1 min • 5 pts

Media Image

Koja naredba nedostaje kako bi se ispisala cijela dvodimenzionalna lista?