Cloud computing allows for large chunks of data to be stored in data centers with owners having the ability to access stored information from any devices or location using their login credentials ensuring information are safe, secure and available over a an infinitely long period of time.
- Sustainability involves keeping hold of something over a very long period of time.
- When data or information are saved on online data centers which is made possible by cloud computing. Cloud computing ensures that data isn't saved on an individual's personal memory storage such as local hard drive or memory Cards where it could be lost at anytime.
- Data is stored online in data centers where it can be accessed over a very long period of time.
Therefore, the ability to get hold of time long information is an essential and important sustainability benefit offered by cloud computing.
Learn more :brainly.com/question/24875533
Answer:
Explanation:
public void printAlphabets(char c){
String capitals = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
String small = "abcdefghijklmnopqrstuvwxyz";
if(capitals.contains(""+c)){
for(int i=0; i<capitals.length();i++){
if (capitals.charAt(i)!=c)
System.out.print(capitals.charAt(i)+" ");
else
break;
}// end for
System.out.print(c);
}else if (small.contains(""+c)){
for(int i=0; i<small.length();i++){
if (small.charAt(i)!=c)
System.out.print(small.charAt(i)+" ");
else
break;
}// end for
System.out.print(c);
}// end else if
}// end printAlphabets method
The answer would be D all of the above.
In python 3.8:
for x in range(1,51):
print(str(x)+" EVEN!" if x %2==0 else str(x)+" ODD!")
This works for me. Best of luck.
Answer:
true false
Explanation:
list1 is assigned as Atlanta, Macon, Savanna
list2 is assigned as Atlanta, Macon, Savanna
list3 is assigned as Macon, Atlanta, Savanna
After these assignments,
The program checks if lis1 is equal to list2 and prints the result. Since both lists are equal, it will print true
The program checks if lis1 is equal to list3 and prints the result. Even though both lists contain the same elements, the order is different, it will print false.