Answer:
Cloud Computing
Explanation:
Cloud Computing is basically an infrastructure to deliver various computing resources and services to the users online (via Internet). These resources include networks, applications, servers, databases, software, storage etc.
These services are mostly utilized by organizations for recovery and backup of data, using virtual hardware and other computing resources such as desktops, memory etc. Cloud computing is also used for developing software, for securing data by providing with access control and for storing bulk of data.
The benefits of cloud computing are as following:
Because of cloud computing the customers do not have to buy hardware or install software on their computer which might be very costly to maintain and update. Servers and data centers are provided by cloud service providers and experts are available for managing the services and resources.
These services are scalable and can be adjusted as per the users requirements.
Cloud computing offers a variety of protocols, tools, and access controls that improve security and protects confidential data, applications, and networks against security threats and attacks. It also provides with data backup, disaster recovery.
Remote desktop is a technology that allows users to connect to a specific computer from a remote location as if they were sitting in front of it.
<h3>What is the desktop remote system?</h3>
A remote desktop is a program or an operating system feature that permits a user to connect to a computer in another location, see that computer's desktop and interact with it as if it were local.
<h3>What is Remote Desktop example?</h3>
A basic example of a Remote Desktop is securing your home laptop to your office PC so you can access files, run applications, print documents, etc. on that PC without going into the office.
However, the host machine does not have to be a PC. It is often a waitperson or virtual server environment in many business use cases.
To learn more about remote desktop, refer
brainly.com/question/4455143
#SPJ4
Answer:
The output is attached below
Explanation:
d = {}
while True:
line = input("Enter line: ")
if len(line)==0:
break
token = line.split(' ')
for var in token:
try:
if len(var)==0:
continue
count = d[var]
d[var] = count + 1
except KeyError:
d[var] = 1
pass
for word in sorted(d):
print(word , d[word])
------------------
Answer:
There is no answers given??
Explanation:
N/A