Skip to main content

Cloud Computing

 CLOUD COMPUTING
The cloud is a generic term used for Internet.
Cloud computing is Internet – based  Computing , Whereby Shared Resources , Software, and Information are provided  to Computer and Other devices on demand, Like the electricity grid…..


Types Of Clouds
There are different types of Clouds that you can subscribe to depending on your choice (Needs)…..
There are four deployment models of Clouds are:
1. Private Clouds
2. Public Clouds
3. Community Clouds
4. Hybrid Clouds

Private Clouds 
These are the clouds for exclusive use by a single Organization and Typically Controlled, managed and hosted in private data 
But a private Clouds remains for the exclusive use of one organization.
For example:-
An example of a private cloud deployment is where you maintain your own servers and infrastructure that hosts your applications and data. ... A Hybrid model is where you also have some applications or servers based on business need running in a public cloud infrastructure like Microsoft Azure or Amazon Web Services.

Public Clouds
These are the clouds for use by the multiple organization ( tenants ) on shared basis and hosted and managed by a third party service providers…
For example:-
Gmail and U of I Box are examples of public cloud services.

“THE CLOUD
The cloud is a generic term used for Internet.” by Deepanshugautam https://link.medium.com/vLWJbDnVF6

Community Clouds
These are the clouds for use by a group of related organization who wish to make use of a common cloud computing environment.
Example of such a community is where organizations/firms are there along with the financial institutions/banks. 

Hybrid Clouds
When a single Organization adopted both private clouds and public clouds for a single application in order to take advantage of the benefits of both.
For example:- Amazon and other..




Comments

Popular posts from this blog

Python - How To Merge Two Dictionaries

  Python -  How to merge two dictionaries As we know If you are working as Python developer, data analytics or data scientists for any organisation then it is very important for you to know how to merge two dictionaries. There are various ways in which Dictionaries can be merged by the use of various functions and constructors in Python. In this article, we will discuss a few ways of merging dictionaries.  Using the method update () By using the method update() in Python, one list can be merged into another. But in this, the second list is merged into the first list and no new list is created. It returns  None .    Example # Python code to merge dict using update() method def Merge(dict1, dict2):      return (dict2.update(dict1))        # Driver code dict1 = { 'a' : 20 , 'b' : 8 } dict2 = { 'd' : 6 , 'c' : 4 }   # This return None print (Merge(dict1, dict2))   # changes made in dict2 pri...

Django in Python

What is Django? Django is a free and open source web application framework written in Python that encourages rapid development and clean pragmatic design. As you know  A framework is nothing more than a collection of modules that  make development easier. They are grouped together, and allow you to create applications or websites from an existing source, instead of from scratch. Some well known sites that use Django include PBS, Instagram, Disqus, Washington Times, Bitbucket and Mozilla. Django offers a big collection of modules which you can use in your own projects. Primarily, frameworks exist to save developers a lot of wasted time and headaches and Django is no different.