ADP KUIS 4

ADP KUIS 4

University

25 Qs

quiz-placeholder

Similar activities

Polar Coordinates

Polar Coordinates

11th Grade - University

20 Qs

Multiplying Whole Numbers Greater Than 1

Multiplying Whole Numbers Greater Than 1

6th Grade - University

20 Qs

1-2 Step Multiplication Division Word Problems

1-2 Step Multiplication Division Word Problems

5th Grade - University

20 Qs

Three Digit Multiplication by Two Digit

Three Digit Multiplication by Two Digit

4th Grade - University

20 Qs

Round Decimal Numbers

Round Decimal Numbers

8th Grade - University

20 Qs

UAS Alpro

UAS Alpro

University

25 Qs

GED Math Assessment

GED Math Assessment

University

20 Qs

spanish words, math, science  (Lv.5)

spanish words, math, science (Lv.5)

2nd Grade - Professional Development

20 Qs

ADP KUIS 4

ADP KUIS 4

Assessment

Quiz

Mathematics

University

Easy

Created by

Iqbal Ramadani

Used 1+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Apa hasil dari kode berikut? ```python angka = [1, 2, 3, 4] angka[2] = angka[2] + angka[0] print(angka) ```
[1, 2, 4, 4]
[1, 2, 3, 4]
[1, 2, 4, 5]
[1, 2, 5, 4]
[1, 3, 3, 4]

2.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Perhatikan kode berikut: ```python data = (1, 2, 3) data[0] = 10 ``` Apa yang akan terjadi?
data menjadi (10, 2, 3)
data menjadi [10, 2, 3]
data menjadi {10, 2, 3}
Terjadi error
data tetap (1, 2, 3)

3.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Manakah yang menghasilkan output `[2, 3]`? ```python x = [1, 2, 3, 4] ...? ```
print(x[1:3])
print(x[0:2])
print(x[2:4])
print(x[1:2])
print(x[:3])

4.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Apa hasil akhir dari kode berikut? ```python x = {1, 2, 3} x.add(4) x.update([2, 5]) print(x) ```
{1, 2, 3, 4}
{1, 2, 3, 4, 5}
{1, 2, 4, 5}
{1, 3, 4, 5}
{2, 3, 4, 5}

5.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Apa hasil dari kode berikut? ```python angka = [1, 2, 3] del angka[1] print(angka) ```
[2, 3]
[1, 3]
[1, 2, 3]
[1, 2]
[1]

6.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Perhatikan kode berikut: ```python a = [1, 2] b = a a.append(3) print(b) ``` Apa hasil dari `b`?
[1, 2]
[1, 2, 3]
[1, 3]
[2, 3]
[3]

7.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Apa hasil dari kode berikut? ```python tuple1 = (1, 2) tuple2 = (3, 4) print(tuple1 + tuple2) ```
(1, 2, 3, 4)
[1, 2, 3, 4]
{1, 2, 3, 4}
Error
(3, 4, 1, 2)

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?