The accenture mynav green cloud advisor integrates sustainability when transitioning client data centers to the cloud by estimating carbon emissions reduction and sustainability index improvement.
- Cloud computing refers to the availability of computer system resources without the user directly managing them. In this case, the network of remote servers that are hosted on the internet helps in the storage and the management of the data.
- Mynav Green Cloud Advisor is vital as it helps companies design cloud solutions that can be used in the reduction of carbon emissions.
In conclusion, accenture mynav green cloud advisor integrate sustainability as cloud solutions are vital to businesses.
Read related link on:
brainly.com/question/2662575
Answer:
the makers of PC is Charles's babbage.analog is has small amount of ram
Answer:
1.)
def two(a, b) :
print(a+b)
print(a*b)
2.)
a = int(input('enter an integer values '))
b = int(input('Enter another integer value' ))
print(a+b)
print(a*b)
3.)
Take side of a square from user and print area and perimeter of it.
def square(a):
area = a**2
perimeter = 4*a
print(area, perimeter)
Explanation:
Code written in python :
The first function named two, takes to arguments a and b ;
The sum of integers a and b is taken and displayed using ; print(a+b)
The product of integers a and b is taken and displayed using ; print(a*b)
2.)
User can enter an input and converted to an integer value using the command ;
int(input()) ; the sum and product of these values are displayed using :
print(a*b) and print(a+b)
The Area and perimeter of a square requires the side length, which is taken as the argument a in the square function defined.
Area of square = a² = a**2
Perimeter = 4 * a