Cloud computing gives you the ability to expand and reduce resources according to your specific service requirement.

a. True
b. False

Answers

Answer 1

Answer:

a. True

Explanation:

Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.

Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.

In Computer science, one of the most essential characteristics or advantages of cloud computing is rapid elasticity.

By rapid elasticity, it simply means that cloud computing gives you the ability to expand and reduce resources according to your specific service requirement because resources such as servers can be used to execute a particular task and after completion, these resources can then be released or reduced.

Some of the examples of cloud computing are Google Slides, Google Drive, Dropbox, OneDrive etc.


Related Questions

What is the quick key to highlighting a column?
Ctrl + down arrow
Ctrl + Shift + down arrow
Right-click + down arrow
Ctrl + Windows + down arrow

Answers

The quick key to highlighting a column is the Ctrl + Shift + down arrow. Thus, option (b) is correct.

What is column?

The term column refers to how data is organized vertically from top to bottom. Columns are groups of cells that are arranged vertically and run from top to bottom. A column is a group of cells in a table that are vertically aligned. The column is the used in the excel worksheet.

The quick key for highlighting a column is Ctrl + Shift + down arrow. To select downward, press Ctrl-Shift-Down Arrow. To pick anything, use Ctrl-Shift-Right Arrow, then Ctrl-Shift-Down Arrow. In the Move/Highlight Cells, the was employed. The majority of the time, the excel worksheet was used.

As a result, the quick key to highlighting a column is the Ctrl + Shift + down arrow. Therefore, option (b) is correct.

Learn more about the column, here:

https://brainly.com/question/3642260

#SPJ6

Answer:

its (B) ctrl+shift+down arrow

hope this helps <3

Explanation:

Write a method named coinFlip that accepts as its parameter a string holding a file name, opens that file and reads its contents as a sequence of whitespace-separated tokens. Assume that the input file data represents results of sets of coin flips. A coin flip is either the letter H or T, or the word Heads or Tails, in either upper or lower case, separated by at least one space. You should read the sequence of coin flips and output to the console the number of heads and the percentage of heads in that line, rounded to the nearest whole number. If this percentage is 50% or greater, you should print a "You win!" message; otherwise, print "You lose!". For example, consider the following input file: H T H H T Tails taIlS tAILs TailS heads HEAds hEadS For the input above, your method should produce the following output: 6 heads (50%) You win!

Answers

Answer:

Here is the JAVA program:

import java.io.*;

import java.util.*;

public class Main {

public static void main(String[] args) throws FileNotFoundException{ //the start of main() function body, it throws an exception that indicates a failed  attempt to open the file

Scanner input = new Scanner(new File("file.txt")); //creates a Scanner object and a File object to open and scan through the file.txt    

coinFlip(input);    } //calls coinFlip method

public static void coinFlip(Scanner input) { //coinFlip method that accepts as its parameter a string input holding a file name

while(input.hasNextLine()) { //iterates through the input file checking if there is another line in the input file

Scanner scan = new Scanner(input.nextLine()); //creates a Scanner object

int head = 0; // stores count of number of heads

int count = 0; //stores count of  total number of tokens

while(scan.hasNext()) { //iterates through the sequence checking if there is another sequence in the input file

String token= scan.next(); // checks and returns the next token

if (token.equalsIgnoreCase("H")||token.equalsIgnoreCase("Heads")) { //compares H or Heads with the tokens in file ignoring lower case and upper case differences

           head++;                } //if a token i.e. any form of heads in file matches with the H or Heads then add 1 to the number of heads

           count++;            } //increment to 1 to compute total number of counts

double result = Percentage(head, count); //calls Percentage method passing number of heads and total counts to compute the percentage of heads

System.out.println(head + " heads " + "(" + result +"%)"); // prints the number of heads

if(result >= 50.00) { //if the percentage is greater or equal to 50

System.out.println("You win!");} //displays this message if above if condition is true

else //if the percentage is less than 50

{System.out.println("You lose!");}  }    } //displays this message if above if condition is false

public static double Percentage(int h, int total) { //method to compute the percentage of heads

double p = (double)h/total* 100; // divide number of heads with the total count and multiply the result by 100 to compute percentage

return p;    } } //returns result

Explanation:

The program is well explained in the comments mentioned with each line of the above code. I will explain how the method coinFlip  works.

Method coinFlip accepts a string holding a file name as its parameter. It opens that file and reads its contents as a sequence of tokens. Then it reads and scans through each token and the if condition statement:

if (token.equalsIgnoreCase("H")||token.equalsIgnoreCase("Heads"))

checks if the each token in the sequence stored in the file is equal to the H or Heads regardless of the case of the token. For example if the first token in the sequence is H then this if condition evaluates to true. Then the head++ statement increments the count of head by 1. After scanning each token in the sequence the variable count is also increased to 1.

If the token of the sequence is HeAds then this if condition evaluates to true because the lower or upper case difference is ignored due to equalsIgnoreCase method. Each time a head is found in the sequence the variable head is incremented to 1.

However if the token in the sequence is Tails then this if condition evaluates to false. Then the value of head variable is not incremented to 1. Next the count variable is incremented to 1 because this variable value is always incremented to 1 each time a token is scanned because count returns the total number of tokens and head returns total number of heads in the tokens.

Percentage method is used to return the percentage of the number of heads in the sequence. It takes head and count as parameters (h and total). Computes the percentage by this formula h/total* 100. If the result of this is greater than or equal to 50 then the message  You win is displayed otherwise message You lose! is displayed in output.

Other Questions
Adopting a pet can be exciting, but there are also important responsibilities that prospective pet owners must consider. Which of the following details best supports the topic sentence? A It is easier to care for a pet that lives in a contained area, like a turtle or goldfish, than a dog or cat. B Some people believe that it is unethical to keep animals as pets, even if they have long been domesticated. C Animals are cute, but they also can be expensive, requiring regular visits to the veterinarian and healthy, nutritious food. D Many pet owners report an increased sense of happiness and satisfaction in life, in large part because of the companionship of their furry friends. A cardboard box without a lid is to be made with a volume of 4 ft 3 . Find the dimensions of the box that requires the least amount of cardboard. A verb that has a direct object is known as _____. 1) a predicate 2) a linking verb 3) an intransitive verb 4) a transitive verb April typed a 5 page report in 50 mintues. Each page had 500 words at what rate is April typing This graph shows the US unemployment rate from August 2010 to November 2011.Sample Unemployment RateGraphUnemployment Rate10%80%6%Unemployment RateAug 10Jan 11Jun 11Nov 11This graph suggests unemployment in the United StatesO will continue to fall.O will continue to rise.O will remain the same.O will only change a little. Dyesss book was published when the war was still being fought. Beck and Burgos were interviewed in the 1990s, five decades after the war. How did Dyesss account of the Bataan Death March differ from Becks and Burgoss accounts? How were the accounts similar? Describe your answer in at least three sentences. Imagine you are directing a movie based on a book or short story you have read. Choose one of the characters and describe what you would make his or her costume look like. Help please!!! Thank you How did the end of the Vietnam War mark a difference in US foreign policy? A. The US had never lost a war before, making war a less favorable option B. The US required an attack on US soil first before beginning a war C. The US would not get involved in any foreign wars after it D. The US would begin new wars in Southeast Asia to prove its strength A grocery store recently sold a bag of peanuts for $0.76 and a bag of Pikachu's for $3.68 at the end of the day 50 bags of peanuts and Pikachu's were sold for a total of 128 point 52 how many bags of each were sold Gina, Sam, and Robby all rented movies from the same video store. They each rented some dramas, comedies, and documentaries. Gina rented 11 movies total. Sam rented twice as many dramas, three times as many comedies, and twice as many documentaries as Gina. He rented 27 movies total. If Robby rented 19 movies total with the same number of dramas, twice as many comedies, and twice as many documentaries as Gina, how many movies of each type did Gina rent? Determine which is the appropriate approach for conducting a hypothesis test. Claim: The mean RDA of sodium is 2400mg. Sample data: n150, 3400, s550. The sample data appear to come from a normally distributed population. The winning times (in seconds) in a speed-skating event for men can be represented by the formula T = 46.97 - 0.099x, where x represents the year, with x = 0 corresponding to 1920. (For example in 1992, x would be 1992 - 1920 = 72.) According to the formula, what was the winning time in 1997? Round to the nearest hundredth. * 1 point 40.34 sec 39.35 sec 3609.07 sec 41.33 sec PLEASE HELP!!! Evaluate the expression when b=4 and y= -3-b+2y A certain mixture of paint contains 5 parts white paint for every 4 parts blue paint. If a can of paint contains 75 ounces of white paint, how many ounces of blue paint are in the can? Imagine an invertebrate that lives in an estuary where salinity varies cyclically with the tides. If this individual is able to adjust the salt concentration of its body fluids, its salt concentration will have:____. a. a cyclic variation depending upon when the animal drinks. b. regular variations that range from large to small. c. slight fluctuations that are kept within a narrow range. d. a cyclic variation opposite that of the surrounding water. The probability density function for random variable W is given as follows: Let x be the 100pth percentile of W and y be the 100(1 p)th percentile of W, where 0 The plot of Seventh Grade is driven forward mostly by Victors feelings about school. behavior in French class. desire to impress Teresa. friendship with Michael. Which kingdom of organisms is being described here?1. Cannot move2. Makes it's own food3. Made of more than one cell4. Cells have a nucleus A client has a BMI of 24.8, which of the following categories would they fall into?