ADP KUIS 4

ADP KUIS 4

University

25 Qs

quiz-placeholder

Similar activities

សំណួរពហុជ្រើសរើសគណិតវិទ្យា

សំណួរពហុជ្រើសរើសគណិតវិទ្យា

2nd Grade - University

20 Qs

Polar Coordinates

Polar Coordinates

11th Grade - University

20 Qs

Comparing Rates Word Problems

Comparing Rates Word Problems

6th Grade - University

20 Qs

S05 T Central II

S05 T Central II

University

20 Qs

Solving One and Two Step Equations with Word Problems

Solving One and Two Step Equations with Word Problems

7th Grade - University

20 Qs

Tenths Hundredths and Thousandths

Tenths Hundredths and Thousandths

6th Grade - University

20 Qs

Percentage Decimals Fraction

Percentage Decimals Fraction

6th Grade - University

20 Qs

Converting Fractions to Simplest Form

Converting Fractions to Simplest Form

6th Grade - University

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?