Dictionary WK Flashcards

All solved qs frm wk

1
Q

. Dictionaries are ________________

A

mutable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Dictionary elements are in the form of _____________ that associates keys to values

A

key-value pairs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

. _____________ of a dictionary must be unique.

A

Keys

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Dictionaries can be created through __.___and __.____ constructor.

A

curly braces {} and dict() constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

___ and _______ operators can only work with dictionary keys

A

in and not in

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

______.__ method removes all the items from dictionary but the dictionary objects exists as an empty
dictionary

A

clear()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The ____.___statement removes a dictionary object along with its items.

A

del

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How are dictionaries different from lists?

A

Dictionaries:

Store data in key-value pairs.

Keys are unique and immutable.

Access elements using keys.

Example: D = {1: 10, 2: 20}.

Lists:

Store data in ordered sequences.

Elements are accessed using indices.

Example: L = [10, 20, 30].

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What type of objects can be used as keys in dictionaries?

A

Keys must be immutable objects such as integers, strings, or tuples.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What type of objects can be used as values in dictionaries?

A

Values can be any type of object, including mutable objects like lists, dictionaries, etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Why can’t lists be used as keys?

A

Lists are mutable, meaning their contents can change after creation. Dictionary keys must be immutable to ensure they remain constant.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How is clear() function different from del <dict> statement?</dict>

A

clear(): Removes all items from the dictionary but retains the dictionary object as an empty dictionary.

Example: D.clear() results in D = {}.

**del <dict>:** Deletes the entire dictionary object, including its structure.</dict>

Example: del D results in D being undefined.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Consider the following dictionary stateCapital:
stateCapital = {“AndhraPradesh”:”Hyderabad”, “Bihar”:”Patna”,”Maharashtra”:”Mumbai”,
“Rajasthan”:”Jaipur”}
Find the output of the following statements:
i. print(stateCapital.get(“Bihar”))
ii. print(stateCapital.keys())
iii. print(stateCapital.values())
iv. print(stateCapital.items())
v. print(len(stateCapital))
vi print(“Maharashtra” in stateCapital)
vii. print(stateCapital.get(“Assam”))
viii.del stateCapital[“Rajasthan”]
ix. print(stateCapital)

A

i. print(stateCapital.get(“Bihar”)): Output: Patna

ii. print(stateCapital.keys()): Output: dict_keys([‘AndhraPradesh’, ‘Bihar’, ‘Maharashtra’, ‘Rajasthan’])

iii. print(stateCapital.values()): Output: dict_values([‘Hyderabad’, ‘Patna’, ‘Mumbai’, ‘Jaipur’])

iv. print(stateCapital.items()): Output: dict_items([(‘AndhraPradesh’, ‘Hyderabad’), (‘Bihar’, ‘Patna’), (‘Maharashtra’, ‘Mumbai’), (‘Rajasthan’, ‘Jaipur’)])

v. print(len(stateCapital)): Output: 4

vi. print(“Maharashtra” in stateCapital): Output: True

vii. print(stateCapital.get(“Assam”)): Output: None (since “Assam” is not a key in the dictionary)

viii. del stateCapital[“Rajasthan”]: Removes the key-value pair for “Rajasthan”.

ix. print(stateCapital): Output: {‘AndhraPradesh’: ‘Hyderabad’, ‘Bihar’: ‘Patna’, ‘Maharashtra’: ‘Mumbai’}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

D1 = {1: 10, 2: 20, 3: 30, 4: 40, 5: 50}
print(D1.keys()) # Output: dict_keys([1, 2, 3, 4, 5])
print(D1.values()) # Output: dict_values([10, 20, 30, 40, 50])
print(D1.items()) # Output: dict_items([(1, 10), (2, 20), (3, 30), (4, 40), (5, 50)])

A

Output: dict_keys([1, 2, 3, 4, 5])

#Output: dict_values([10, 20, 30, 40, 50])
#Output: dict_items([(1, 10), (2, 20), (3, 30), (4, 40), (5, 50)])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

D1 = {1 : 10, 2 : 20, 3 : 30, 4 : 40}
D2 = {5 : 50, 6 : 60, 7 : 70}
print(D1.update(D2))
print(D1)

A

D1 = {1: 10, 2: 20, 3: 30, 4: 40}
D2 = {5: 50, 6: 60, 7: 70}
print(D1.update(D2)) # Output: None (update() returns None)
print(D1) # Output: {1: 10, 2: 20, 3: 30, 4: 40, 5: 50, 6: 60, 7: 70}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

D3 = {1 : 100, 2 : 150, 3 : 200}
D4 = {4 : 250, 2 : 175, 5 : 400, 3 : 225}
print(D3.update(D4))
print(D3)

A

D3 = {1: 100, 2: 150, 3: 200}
D4 = {4: 250, 2: 175, 5: 400, 3: 225}
print(D3.update(D4)) # Output: None (update() returns None)
print(D3) # Output: {1: 100, 2: 175, 3: 225, 4: 250, 5: 400}

17
Q

Comp = { ‘Dell’ : 25000, ‘HP’ : 28500, ‘Lenovo’ : 23250 }
NewComp = { ‘Acer’ : 17300, ‘Lenovo’ : 24500, ‘Apple’ : 37400 }
Comp.update(NewComp)
print(Comp)

A

Comp = {‘Dell’: 25000, ‘HP’: 28500, ‘Lenovo’: 23250}
NewComp = {‘Acer’: 17300, ‘Lenovo’: 24500, ‘Apple’: 37400}
Comp.update(NewComp)
print(Comp) # Output: {‘Dell’: 25000, ‘HP’: 28500, ‘Lenovo’: 24500, ‘Acer’: 17300, ‘Apple’: 37400}

18
Q

TV = { ‘Ikon’ : 22000 ,’Samsung’ : 29300, ‘LG’ : 27800, ‘Sony’ : 38000, ‘Philips’ : 24000}
print(TV.keys())
print(TV.values())
del TV[‘Sony’]
print(TV)
TV.pop(‘LG’)
print(TV)
print(TV.clear())
print(TV)

A

TV = {‘Ikon’: 22000, ‘Samsung’: 29300, ‘LG’: 27800, ‘Sony’: 38000, ‘Philips’: 24000}
print(TV.keys()) # Output: dict_keys([‘Ikon’, ‘Samsung’, ‘LG’, ‘Sony’, ‘Philips’])
print(TV.values()) # Output: dict_values([22000, 29300, 27800, 38000, 24000])
del TV[‘Sony’]
print(TV) # Output: {‘Ikon’: 22000, ‘Samsung’: 29300, ‘LG’: 27800, ‘Philips’: 24000}
TV.pop(‘LG’)
print(TV) # Output: {‘Ikon’: 22000, ‘Samsung’: 29300, ‘Philips’: 24000}
print(TV.clear()) # Output: None (clear() returns None)
print(TV) # Output: {}

19
Q

TV = { ‘Ikon’: 22000 ,’Samsung’ : 29300, ‘LG’ : 27800, ‘Sony’ : 38000, ‘Philips’ : 24000 }
print(‘Sony’ in TV)
print(‘TCL’ in TV)
print(‘Philips’ not in TV)
print(‘SAMSUNG’ not in TV)

A

TV = {‘Ikon’: 22000, ‘Samsung’: 29300, ‘LG’: 27800, ‘Sony’: 38000, ‘Philips’: 24000}
print(‘Sony’ in TV) # Output: True
print(‘TCL’ in TV) # Output: False
print(‘Philips’ not in TV) # Output: False
print(‘SAMSUNG’ not in TV) # Output: True

20
Q

Comp = { ‘Dell’ : 25000, ‘HP’ : 28500, ‘Lenovo’ : 23250, ‘Acer’ : 17300, ‘Apple’ : 37400}
print(len(Comp))
del(Comp[‘Acer’])
print(Comp)
Comp[‘Asus’] = 29500
Comp.pop(‘HP’)
print(len(Comp))

A

Comp = {‘Dell’: 25000, ‘HP’: 28500, ‘Lenovo’: 23250, ‘Acer’: 17300, ‘Apple’: 37400}
print(len(Comp)) # Output: 5
del(Comp[‘Acer’])
print(Comp) # Output: {‘Dell’: 25000, ‘HP’: 28500, ‘Lenovo’: 23250, ‘Apple’: 37400}
Comp[‘Asus’] = 29500
Comp.pop(‘HP’)
print(len(Comp)) # Output: 4

21
Q

Program to store product names and prices:

A

products = {}
n = int(input(“Enter the number of products: “))
for i in range(n):
name = input(“Enter product name: “)
price = float(input(“Enter product price: “))
products[name] = price

search_item = input(“Enter the product name to search: “)
if search_item in products:
print(f”Price of {search_item}: {products[search_item]}”)
else:
print(“Product not found.”)

22
Q

Program to store airline names and airfare:

A

airlines = {}
n = int(input(“Enter the number of airlines: “))
for i in range(n):
name = input(“Enter airline name: “)
fare = float(input(“Enter airfare: “))
airlines[name] = fare

search_airline = input(“Enter the airline name to search: “)
if search_airline in airlines:
print(f”Airfare of {search_airline}: {airlines[search_airline]}”)
else:
print(“Airline not found.”)

23
Q

Program to store employee names and salaries:

A

employees = {}
n = int(input(“Enter the number of employees: “))
for i in range(n):
name = input(“Enter employee name: “)
salary = float(input(“Enter employee salary: “))
employees[name] = salary

search_employee = input(“Enter the employee name to search: “)
if search_employee in employees:
print(f”Salary of {search_employee}: {employees[search_employee]}”)
else:
print(“Employee not found.”)