x = {"a", "b", "c"}
y = {"b", "c", "d"}
z = x & y
print(z)
Right Answer:
The & operator is used for set intersection, which returns the common elements between two sets. Therefore, the output will be {“b”, “c”}.
Right Answer:
The & operator is used for set intersection, which returns the common elements between two sets. Therefore, the output will be {“b”, “c”}.
Right Answer:
Booleans in Python are used to represent true or false values.
Right Answer:
Tuples in Python are immutable, meaning their elements cannot be changed after they are created.
Right Answer:
The ** operator is used for dictionary unpacking, combining the key-value pairs of two dictionaries. If there are duplicate keys, the value from the second dictionary overrides the value from the first dictionary. Therefore, the output will be {“a”: 1, “b”: 3, “c”: 4}.
Right Answer:
Lists in Python are used to store collections of items where each item is indexed by a numerical index.
Right Answer:
Dictionaries in Python are used to store collections of items where each item is indexed by a key.
Right Answer:
The code snippet converts the string “20” to an integer using the int() function and then adds it to the integer value of “x”. Therefore, the output will be 30.
Right Answer:
The code snippet prints the data type of the variable “x”, which is a list. The correct type name in Python is “list”.
Right Answer:
The code snippet prints the data type of the variable “x”, which is a set. The correct type name in Python is “set”.
x = {"apple", "banana", "cherry"}
print(type(x))
Right Answer:
Strings in Python can be concatenated using the “+” operator to combine multiple strings into one.