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.
Answer:
B
Explanation:
This problem statement does not clearly define the issues.
The organization must develop it specifically for the business in order to get the functionality required is True.
a) true
<u>Explanation:</u>
In software development industry it called as EAS. Where organizations required complete one solution and made most customizable with less cost effective.
Moreover to implement the same organizations has to spend less money for software development and hardware appliances. An organization has clear documented which specific their business requirements and their business future expansion.
Basically in organization from low grade employee to higher employee and meeting is arranged and understand system requirements and compiled as document which is circulated to higher official in organization for their final approval.
Aaaaaaaeeeeeeeeiiiiiioooooouuuuuu
for num in range(4):
print(num)
The output will be:
0
1
2
3
The for loop iterates through the numbers in the range function and prints those same numbers to the console.