Liste i sortiranja

Liste i sortiranja

9th - 10th Grade

6 Qs

quiz-placeholder

Similar activities

AP CSP Review 11Q

AP CSP Review 11Q

10th - 12th Grade

11 Qs

Robotics Ch1 Intro

Robotics Ch1 Intro

6th - 10th Grade

10 Qs

Powerpoint Quiz

Powerpoint Quiz

9th - 12th Grade

10 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

Chapter 5

Chapter 5

9th Grade

10 Qs

Lesson 01 Unit 1 Excel 2019/365 MOAC

Lesson 01 Unit 1 Excel 2019/365 MOAC

9th - 12th Grade

10 Qs

Programs and Variables in Code and Play

Programs and Variables in Code and Play

5th - 9th Grade

7 Qs

Les variables sous Python

Les variables sous Python

10th - 12th Grade

10 Qs

Liste i sortiranja

Liste i sortiranja

Assessment

Quiz

Computers

9th - 10th Grade

Practice Problem

Medium

Created by

Tihomir Robotić

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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?