Dictionary Python

Dictionary Python

University

15 Qs

quiz-placeholder

Similar activities

COMP177 Mod 8 - Lists & Dictionaries

COMP177 Mod 8 - Lists & Dictionaries

University

16 Qs

Data Analysis using Python

Data Analysis using Python

University

20 Qs

Basic Python

Basic Python

University

20 Qs

CodeHS Basic Data Structures in Python

CodeHS Basic Data Structures in Python

University

20 Qs

Phyton-1

Phyton-1

University

12 Qs

Python

Python

University

10 Qs

PYTHON_CHAPTER 7

PYTHON_CHAPTER 7

University

10 Qs

Py-Hackathon - Week 2 - Day 2

Py-Hackathon - Week 2 - Day 2

University

15 Qs

Dictionary Python

Dictionary Python

Assessment

Quiz

Computers

University

Medium

Created by

Muhammad Rafi Al Basyary

Used 19+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Dictionary adalah tipe data python yang menggunakan pendekatan "--- - ---"

"key - item"

"key - value"

"item - value"

"item - key"

2.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

A = {"AP" : "Basis Data", "PU" : "Statistika", "AH" : "Data Preparation"}

- - - - -

print(B)

#['AP', 'SDW', 'AH']#

B = list(A.keys())

B = set(A.keys())

B = list(A.items())

B = set(A.items())

3.

MULTIPLE CHOICE QUESTION

10 sec • 6 pts

Pola pada Dictionary menggunakan

{ = }

( = )

{ : }

( : )

4.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Tipe data berikut dapat digunakan pada Key dalam Dictionary , kecuali

String

Boolean

Tuple

Angka

5.

MULTIPLE CHOICE QUESTION

30 sec • 9 pts

SDA = {"A1" : "C", "A2" : "C++", "A3" : "PYTHON"}

- - - - -

#None#

print(SDA.get("A4"))

print(SDA.get(("A4")

print(SDA("A4"))

print(SDA(("A4")

6.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Yang bukan merupakan sifat dari Dictionary adalah

Unordered

Changeable

Unique

Fatigue

7.

MULTIPLE CHOICE QUESTION

20 sec • 10 pts

Mantan = {"Icha" : "Keanu", "Yushin" : "Kim Davin", "Ilham" : "Lucinta" }

print(Mantan.get["Yushin"])

# - - - - - #

None

Kim Davin

['Kim Davin']

Error

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?