1. Process management
2. Memory management
3. Disk and file systems
4. Networking
5. Security
6. Internal security
7. External security
Answer:
Following are the program in the Python Programming Language:
#set dictionary
d = { 'State' : 'Delhi', 'Country' : 'India'};
#reverse the dictionary.
revers = dict((v, k) for k, v in d.items())
#Displays the reversed dictionary.
print("Dictionary is: \n")
print(revers)
<u>Output</u>:
Dictionary is:
{'Delhi': 'State', 'India': 'Country'}
Explanation:
Here, we set the dictionary data type variable "d" then, we set the variable in which we store the reverse of the dictionary in which key is converted into the value and value is converted into the key. and finally we print the reverse dictionary.
A. synthesizing im pretty sure :)