Which of these is a sequence of instructions carried out by another program opposed to the processor?(1 point)

Responses

script
script

array
array

stack
stack

string

9 answers

The correct response is script.

A script is a sequence of instructions written in a programming or scripting language that is executed by another program, such as an interpreter or a scripting engine, rather than directly by the processor.

Which of the following is an Application Programming Interface (API) that is referred to as “representational state transfer,” and is the approach for communications in web services?(1 point)
Responses

composite API
composite API

partner API
partner API

REST API
REST API

internal API

The correct response is REST API.

REST (Representational State Transfer) is an architectural style for designing networked applications, primarily used for communication in web services.

You are trying to get a current forecast of weather from a specific location in the world. There are a couple open API sites that allow you to extract the data. What request should you be using to acquire this data?(1 point)
Responses

else
else

get
get

print
print

if
if

The correct response is get.

In the context of making API requests, a "GET" request is used to retrieve data from a specified resource, such as obtaining the current weather forecast from an API.

Which of the following is a quoted string which contains data in a format that is interchangeable between multiple different coding languages?(1 point)
Responses

JSON
JSON

module
module

post
post

head

The correct response is JSON.

JSON (JavaScript Object Notation) is a lightweight data interchange format that is easy for humans to read and write, and easy for machines to parse and generate. It is commonly used for data exchange between different programming languages and systems.

Which of the following is a method request that the entity is to be stored or put at a specific URL?(1 point)
Responses

get
get

post
post

head
head

put()

The correct response is put.

In the context of HTTP methods, a PUT request is used to store or update a resource at a specific URL. It is intended to upload the data to that URL, replacing any existing resource.