________ platforms automate tasks such as setting up a newly composed application such as a web service or linking to other applications.

Answers

Answer 1

Answer:

Cloud-based

Explanation:

Cloud based platforms are the various platforms that leverage on the power of cloud computing. With these platforms, users or businesses can access some or all features and files of a system without having to store these files and features on their own computers. Some of these platforms also automate tasks such as setting up various applications (such as a web service, a web application, database systems e.t.c) and/or linking them to other applications. Some of these platforms are;

i. Google Drive

ii. Amazon Web Services (AWS)


Related Questions

The is_positive function should return True if the number received is positive, otherwise it returns None. Can you fill in the gaps to make that happen?

Answers

Question:

The is_positive function should return True if the number received is positive, otherwise it returns None. Can you fill in the gaps to make that happen?

def is_positive(number):

       if  _____ :

           return _____

Answer:

def is_positive(number):

   if (number > 0):

       return True

  else:

       return "None"

---------------------------------------------------------------------------------

Code Test and Sample Output:

print(is_positive(6))

>> True

print(is_positive(-7))

>> None

----------------------------------------------------------------------------------

Explanation:

The code above has been written in Python.

Now, let's explain each of the lines of the code;

Line 1: defines a function called is_positive which takes in a parameter number. i.e

def is_positive(number):

Line 2: checks if the number, supplied as parameter to the function, is positive. A number is positive if it is greater than zero. i.e

if (number > 0):

Line 3: returns a boolean value True if the number is positive. i.e

return True

Line 4: defines the beginning of the else block that is executed if the number is not positive. i.e

else:

Line 5: returns a string value "None" if the number is not positive. i.e

return "None"

All of these put together gives;

===============================

def is_positive(number):

   if (number > 0):

       return True

   else:

       return "None"

================================

An example test of the code has also been given where the function was been called with an argument value of 6 and -7. The results were True and None respectively. i.e

print(is_positive(6))   = True

print(is_positive(-7))  = None

Following are the python program to check input number is positive or negative:

Program:

def is_positive(n):#defining the method is_positive that takes one variable in parameter

   if (n > 0):#defining if block that check input number is positive

       return True#return boolean value that is True

   else:#else block

      return "None"#return string value

n=int(input("Enter number: "))#defining n variable that input a number

print(is_positive(n))#using print method that calls and prints method return value

Output:

please find the attached file.

Program Explanation:

Defining the method "is_positive" that takes one variable "n" in the parameter.Inside the method, if conditional block is defined that checks the input number is positive, if it's true, it will return a boolean value that is "True". Otherwise, it will go to the else block, where it will return a string value that is "None".Outside the method, the "n" variable is declared to be an input number.After the input value, a print method is used that calls the "is_positive" method and prints its return value.

Find out more about the method here:

brainly.com/question/5082157

Implement the function:

string get_ap_terms(int a, int d, size_t n);

which returns a string containing the first n terms of the arithmetic progression (AP) as a sequence of comma-separated values.

Answers

Answer:

This is written in C++

Check comments for explanations

Program starts here

#include<iostream>

#include<string>

using namespace std;

//The function get_ap_terms begins here

string get_ap_terms(int a, int d, int size_tn)

{  

// This line initializes the expected string to empty string

string result = "";

//The for iteration loops through the number of terms the function is expected to return

for(int i = 1; i<= size_tn;i++)

{

//This line checks if the loop is less than the number of  terms    

if(i < size_tn)

  {

//This string gets the current term of the progression

   result+=to_string(a)+ ", ";

//This line calculates the next term

   a+=d;  

  }

  else

  {

//This line calculates the last term

   result+=to_string(a);

  }

}

//This line returns the string containing the first n terms of the arithmetic progression

return result;

}

//The main function starts here

int main()

{

//This line declares the first term (a), the common difference (d) and the number of terms (size_tn)

int a,d,size_tn;

//This line prompts the user for the first term

cout<<"First Term: ";

//This line gets the first term

cin>>a;

//This line prompts the user for the common difference

cout<<"Common Difference: ";

//This line gets the common difference

cin>>d;

//This line prompts the user for number of terms

cout<<"Number of Terms: ";

//This line gets the number of terms

cin>>size_tn;

//This line calls the function to print the string containing the first n terms

cout<<get_ap_terms(a, d, size_tn);

return 0;

}

//Program ends here

Other Questions
Question 15 A party rental company has chairs and tables for rent. The total cost to rent 8 chairs and 3 tables is $38 . The total cost to rent 2 chairs and 5 tables is $35 . What is the cost to rent each chair and each table? Which equation could be used to find the length of the hypotenuse?5 cmB8 cm De acuerdo al calendario ecolgico 2020, escriba cuanto CO2 produce el Ecuador y en un resumen mximo de 7 lneas, determine porque son importante los humedales en la biodiversidad. 15. regarding tubuloglomerular feedback, which is true a. tends to maintain renal blood flow b. the sensor is JG cell c. operates via contraction of the mesangial cells d. acts to reduce GFR if the flow rate in the ascending loop of Henle falls e. GFR is modulated via contraction or dilation of the afferent arteriole Construct the described data set. The entries in the data set cannot all be the same. The median and the mode are the same. What is the definition of median? A. The value that lies in the middle of the data when the data set is ordered. B. The sum of the data entries divided by the number of entries. C. The data entry that occurs with the greatest frequency. D. The data entry that is far removed from the other entries in the data set. What was the term used by Churchill in reference to the Soviet Union's rule over Eastern European nations? A the Marshall Plan B Iron Curtain C the Warsaw Pact D NATO what the indirect object in this sentence? " American Indians showed settlers how to plant corn." Haroldo, Xerxes, Regina, Shaindel, Murray, Norah, and Georgia are invited to a dinner party. They arrive in a random order and all arrive at different times. What is the probability that Xeres arrives first AND Regina arrives last? The sum of the interior angles of a polygon is 9x. If x is 3 greater than the number of side of the polygon, how many sides does the polygon have? A chemistry student weighs out of hypochlorous acid into a volumetric flask and dilutes to the mark with distilled water. He plans to titrate the acid with solution. Calculate the volume of solution the student will need to add to reach the equivalence point. Round your answer to significant digits. Select the correct answer.Which highlighted word is an adjective?Will you walk in cold weather?OA.walkOB. inOC. coldResetNext Bruin, Inc., has identified the following two mutually exclusive projects: Year Cash Flow (A) Cash Flow (B) 0 -37,500 -37,500 1 17,300 5,700 2 16,200 12,900 3 13,800 16,300 4 7,600 27,500 a) What is the IRR for each of these projects The second half of the eighteenth century witnessed Group of answer choices a tremendous growth in amateur music making at home. a move back to the basics of Gregorian chant. the downfall of Haydn's career. the birth of opera. Which statement best describes how a catalyst can speed up a chemical reaction? The catalyst decreases the reaction energy needed. The catalyst increases the concentration of products. The catalyst binds to enzymes to release substrates. The catalyst increases the concentration of reactants. Consider each situation and determine whether the person is structurally unemployed, frictionally unemployed, or cyclically unemployed. a. Julie had to leave her old job when she moved to a new city. She works in customer service and is looking for a new job.b. Julie graduates from college and is looking for a job as an accountant.c. Bob loses his job as the economy slips into a recession.d. Jim got laid off from his job at an auto manufacturer as the company became more automated. Will give brainliest answer Hughes was influenced by the poets Walt Whitman, Carl Sandburg, Paul Laurence Dunbar, and Claude McKay. Can you detect these influences in this poem or in other poems written by Hughes? Harlem (A Dream Deferred) by Langston Hughes Someone plz HELP MEE!!!! Ive been needing help the whole day. CaC(s) + H2O(l) > Ca(OH)2(s): triangle H = -65.2kJ Please help, i need to finish this please! A drug's generic name is the official drug name found in theA. National Institutes of Health.B. Center for Disease Control.C.U.S Pharmacopeia National Formulary.D. Physician's Desk Reference.