The ability to scale cloud computing resources quickly to meet peak demand and just as quickly remove resources if they are not currently needed.

A. rapid elasticity
B. rubberbanding
C. force shaping
D. virtualization


Answer: A. rapid elasticity

Computer Science & Information Technology

You might also like to view...

What is the goal of a VPN tunnel?

What will be an ideal response?

Computer Science & Information Technology

Suppose that you were asked to arrange a group of people in sequence from oldest to youngest. You must organize a line that begins with the oldest person and continues in descending order according to age. Describe an algorithm for completing this task.

What will be an ideal response?

Computer Science & Information Technology

One ____ available for specifying conditional formatting in a report is "Check values in the current record or use an expression."

A. condition type B. rule type C. field format D. field value

Computer Science & Information Technology

public abstract class Car {     private String model;     public abstract void color();     public String getName()     {         return model;      }      public void setName(String carModel)      {         model = carModel;       } } ? ? Using the code above, would it be possible to create a class in which you declare a Car object with the statement Car myCar = new Car("Honda");? Explain why or why not.

What will be an ideal response?

Computer Science & Information Technology