Complete the sentence.

A(n) ___ allows a device and a server or two servers to share data and functionality.
-API
-PIA

A ___ integrates an API into the software.
-consumer
-developer

A ___ creates an API for use within a company or for public use.
-consumer
-developer

Answers

Answer 1

An API allows a device and a server or two servers to share data and functionality. Also, a developer integrates an API into the software.

What is an API?

API is an acronym for application programming interface and it's a software intermediary (computing interface) that is made up of tools, set of executable codes, and protocols that help software applications and computers to function properly, as well enable the exchange of data.

In Computer technology, an API allows a device and a server or two servers to share data and functionality. Also, a developer integrates an API into the software.

In conclusion, an API is created by a software developer for use within a company or for public use.

Read more on API here: https://brainly.com/question/20910074

#SPJ1


Related Questions

How can you tell if a website is biased?

Answers

Answer:

the author has not considered other points of view.

Question 6 of 10
In which part of the Scratch interface does a programmer combine code
blocks to build the program?
OA. Block palette
OB. Scripts area
OC. Sprite info pane
Stans

Answers

The part of the Scratch interface does a programmer combine code that blocks to build the program is Block palette.

What is block programming in Scratch?

Scratch is known to be a kind of "block-based" programming language. that uses "blocks" in programming.

Note that The block palette is where a lot of script blocks are found and as such, The part of the Scratch interface does a programmer combine code that blocks to build the program is Block palette.

Learn more about programmer from

https://brainly.com/question/23275071

#SPJ1

Wollongong City council is interested in the growing tourism market and opens an office to launch services for people who travel on holidays and cannot look after their properties (houses or units) while they are away. This new office currently has 200 employees whose PCs are linked by a small LAN. Each PC shares files and also services (such as printing) with the others on the LAN. What type of network model is suitable to build a small LAN for this new office? How can you protect your LAN from Malware attacks?

Answers

Answer:

list five characteristics of cpu

If I use the command right(90), which way will Tracy turn?
If correct I mark brainlist

Answers

Answer: Right

Explanation: If you use the Command Right (90°), it makes sense that Tracy turns right 90°...

What kinds of
programs are included in system software?

Answers

Answer:

Programs such as the operating system, database management systems, networking software, translators, and software utilities.

Explanation: Hope it helps you :))))

Have a good day.

Which happens when a program uses artificial intelligence?

The program must be updated frequently due to new developments in AI.
The computer changes its performance based on experience.
The user always loses.
The user can detect that AI was used in the design of the program.

Answers

Answer:

B. The computer changes its performance based on experience.

A continuous and differentiable function f(x) with the following properties: f(x) is decreasing at x=−5 f(x) has a local minimum at x=−2 f(x) has a local maximum at x=2

Answers

The continuous and differentiable function where f(x) is decreasing at x = −5 f(x) has a local minimum at x = −2 f(x) has a local maximum at x = 2 is given as: y = 9x - (1/3)x³ + 3.

What is a continuous and differentiable function?

The continuous function differs from the differentiable function in that the curve obtained is a single unbroken curve in the continuous function.

In contrast, if a function has a derivative, it is said to be differentiable.

What is the solution to the problem above?

It is important to note that a function is differentiable when x is set to a if the function is continuous when x = a.

Given the parameters, we state that

f'(5) < 0; and

x = -5

The local minimum is given as:
x = -3;

the local maximum is given as

x = 3

Thus, x = -3 ; alternatively,

x = 3.  With this scenario, we can equate both to zero.

Hence,

x + 3 = 0;

3-x = 0.

To get y' we must multiply both equations to get:

y' = (3-x)(x + 3)

y'   = 3x + 9 - x² - 3x

Collect like terms to derive:

y' = 3x - 3x + 9 - x²; thus

y' = 9-x²

When y' is integrated, the result is

y = 9x - (x³/3) + c

Recall that

F (-5) < 0

This means that:

9 x -5 - (-5³/3) + c < 0
⇒ -45 + 125/3 + c <0
⇒ -10/3 + c < 0

Collecting like terms we have:
c < 10/3; and

c < 3.33


Substituting C into

f(x) = 9x - x³/3 + c; we have

f(x) = 9x - x³/3 + 3, which is the same as  y = 9x - (1/3)x³ + 3.

Learn more about differentiable functions at:
https://brainly.com/question/15047295
#SPJ1

I need help with some homework. I would like to know what is the easiest way to reach out.

Answers

I can help you, you can message me on this app.

define and explain cyberbullying with example​

Answers

Answer:

Definition: Cyberbullying is a form of bullying using electronics as a way to hide behind the screen

Joan got an email telling her she was ugly from Kate, that is cyberbullying.

Help me please!!!. And if you gonna copy from the internet make the sentence sound different so the teach doesn’t know I’m copying ty!

Answers

Answer:

10. Letter 'm'

11. It's about baseball. The catcher and the umpire

12. An anchor

What is returned by the code: range (20, 100, 20)

Answers

The code that is returned by the code: range (20, 100, 20)  is known as  (20, 50, 80).

What is this code about code?

The line of code is known to be one that often returns the ASCII code as the ASCII is known as American Standard Code for Information Interchange.

Note that the code is made up of   seven bit code and thus the code returned for range (20, 100, 30) is (20, 50, 80).

Learn more about code from

https://brainly.com/question/20796198

#SPJ1

Write a program that first reads in the name of an input file and then reads the input file using the file.readlines() method

Answers

Using the computational language in python we have to use it to write to a file and read with the code.

Writing this code in python we have:

filename = input()

file = open(filename)

lines = file.readlines()

data = {}

for i in range(0, len(lines), 2):

   num_seasons = int(lines[i].strip())

   show = lines[i + 1].strip()

   if num_seasons not in data:

       data[num_seasons] = []

   data[num_seasons].append(show)

file.close()

file_writer = open('output_keys.txt', 'w')

titles = []

for num_seasons in sorted(data):

   shows = []

   for show in sorted(data[num_seasons]):

       titles.append(show)

   file_writer.write(str(num_seasons) + ': ' + '; '.join(data[num_seasons]) + '\n')

file_writer.close()

file_writer = open('output_titles.txt', 'w')

for title in sorted(titles):

   file_writer.write(title + '\n')

file_writer.close()

See more about python at brainly.com/question/18502436

#SPJ1

organizational behavioural aspects

Answers

Answer:

Organizational behavior aspects are the points of view represented by external environments, including people and technology. We can make improvements to our physical aspects by using this particular aspect to understand how everyday elements interact with one another.

Controlling costs and managing a budget are important only at the beginning of a project. Figuring out the total cost of a project after work has started is good management. The project manager must be aware of all costs when allotting a specific amount of money to each task throughout the project.

Answers

Answer:

bank offinjiniwniqnwjwnnww. jwiejien3I2n2 jwiwjwn2 no2no2n2I2nwjn2i

Answer:

False False True

Explanation:

because yes

Other Questions
Because the superhero was so powerful, the villain in the graphicnovel was destroyed in just a few scenes.Which part of the sentence is an example of a prepositional phrase?Select one:O was destroyedOO in the graphic novelO was so powerfulBecause the superheroIts in the graphic novel Complete the following paragraph about Theodore Roosevelt's views on racial equality.Although Theodore Roosevelt believed in racial _____, with white men at the top of the social order, he also felt that members of what he considered inferior races could raise their social status through hard work. As a result, he was known for inviting numerous African American leaders to the White House. Despite this, he did not support actions such as ____ to increase equality for African Americans. You can make a solution (solid solute) more concentrated byadding more soluteO increasing the pressureadding more wateradding more solvent Cmo se dice "baseball cap" en espaol?A. La camisaB. La gorraC. Los pantalonesD. Las botas what is the answer to 1.4+(1.2) 12. Find the solution to the system of equations byusingsubstitution.y = -2x + 134x + 8y = 20A)(-7,-1)B)(4,5C)(7,-1)D)(-3,7) Given that 2x-5x - 4x+8 = (Ax - 1)(x-B)(x + 1) + C for all values of x, find thevalues of A, B and C. Translate to SpanishMy parents are both Japanese American as they were brown in California. My mother is fluent in Japanese and English while my father is only fluent in english. They are in their late 50s.I have a twin brother named Cole. We are identical twins but we look nothing alike. We used to play basketball together but quit going into high school. We are both in 11th grade. I have a pretty older sister that is 21. She is going to cal state poly Pomona college. She used to Pick on me when I was younger but doesnt talk to me anymore now. I have two uncles. Uncle Ron is a doctor that did pretty good for himself and uncle Steven died of cancer a few years back. He used to make me smile when I was down and depressed. Please help me ASAP PLEASE What happens when a driver selects the driving range option from 2023 leafs available ev info menu?. If an electric stove uses 6 A of current on a 110 V circuit for two hours, how many kilowatt hours were used? WHAT IS THIS HELPif u put a bad answer i'll report ways in which community Can help in Shaping one's personalities if this strand is replicated what is the complementary strand that is produced Which of the following is NOT an author's purpose for writing?to persuadeto entertainto boreto inform 2.12 PLEASE HELPWhat was the immediate outcome after Lincoln issued theEmancipation Proclamation?A. The abolition of slavery became a major focus of the war.B. The Thirteenth Amendment was ratified.C. The Freedman's Bureau was created.D. Enslavers released the people they held in bondage. If you help me you get a lot of points Jayden is researching the Earth'splates. How would he describe therelationship between the Earth's platesand soil and rocks? Select the correct answer.Which is the correct definition of a large animal?O A.an animal that lives outdoorsOB.an animal used for food, farming, or agricultureOC. an animal of a large size that needs daily careOD. an animal that needs large farms 34. Study the topographical maps below:Map 1-E11contour interval = 50 mcontour interval = 50 mWhich features are most likely shown in both topographical maps? (SC.6.E.6.2)a. streamsb. islandsc. valleysd. lakes,300550550Map 2300-W-E