The following cools the air in a household refrigerator: Absorption of the heat from the air due to evaporation of the liquid refrigerant . Correct answer:B
The function of the refrigerator is to absorb heat into the refrigeration system. The evaporator is placed in the area to be cooled. The refrigerant vaporizes from the heat it absorbs heat in the evaporator.
Answer:
The statement is "True".
Explanation:
Explanation of this statement can be given as:
- Taylor's mother meant that the "universe is open to everything you do online, everyone can see". This statement true, because people will hack your profile unless you label these as personal, even re-post material that you have shared.
- In other words, we can say that a profile is placed on private in social media, it's not always free and your friend can use it, and they can share your personal information. It is difficult to uninstall once it is out there.
Answer:
Hypertext is a text in a document which references some other link within the same page or another page.
Search engine is an information retrieval system from larger pool of resources.
IT is for information technology whereby with the help of systems and communication medium we are able to send, retrieve information from one place to another.
Explanation:
Some website page can contain hypertext which is a link to another page. These are simple text upon clicking it lands us to another page or a pop up activity.
Examples of search engine is google with which we can search and retrieve information from a large database servers.
IT governs the ways these information exchanges taking place between client and sender with help of systems(computers) and communicating medium(internet).
Answer:
Explanation; lol ok so he reported himself but acted innocent love that
Answer:
- jersey_dict = {}
-
- for i in range(5):
- j_num = int(input("Input Jersey's number (0-99): "))
- rating = int(input("Input rating (1 - 9): "))
- jersey_dict[j_num] = rating
-
- sorted_key = []
- for i in jersey_dict.keys():
- sorted_key.append(i)
-
- sorted_key.sort()
- for i in sorted_key:
- print(str(i) + ":" + str(jersey_dict[i]))
Explanation:
Firstly, define an empty dictionary (Line 1).
Next, use a for loop to prompt user to input five Jersey's number and rating and keep the input to the dictionary (Line 3-6). Next, create a list to hold the dictionary keys (Line 8-10). Use build in method, sort to arrange the keys in the list in ascending order (Line 12 ). At last, print the dictionary element by looping over the value in the sorted_key list (Line 14-15).