Anybody know #3 ? I need two ppl to answer this !! Free Brainliest!!
Anybody know #3 ? I need two ppl to answer - 1

Answers

Answer 1
Answer:

Answer: A command-line interface (CLI) is a means of interacting with a computer program where the user (or client) issues commands to the program in the form of successive lines of text (command lines). The program which handles the interface is called a command-line interpreter or command-line processor.

Answer 2
Answer:

Answer:

It b for sureeeeeeeeeeee


Related Questions

DTP programs are able to import this type of text regardless of the program used to create it.a. ASCII b. bold c. formatted d. plain underlined
Scientific NotationRepresent the following numbers in scientific notation0.0000000000067890.14780000000000000030.20000000000.00673480000.000003561201000000002000.34
You can type comments to yourself in the _____ for a specific slide while working in Normal view.
How do you add binary numbers?
In the following scenario, which can a photo editor digitally do to photos that could not be done before?A photo shoot for a new advertising campaign has just finished. The ad campaign is for a new line of makeup from an international beauty corporation. The photo spread includes several close-up shots of models wearing the different makeup products.Add a soft focus to the image.Remove freckles from the model’s face.Add a warm glow to the entire photo.Enhance the color of the makeup and tone down the color of the model’s skin.

On an open book test, Anna was asked to predict how American laws may affect the Mexican way of life if the US Constitution was applied to Mexico’s laws.

Answers

In this open book exam, the students are asked to apply information to a new situation. 
Given that this test is an open book, consider yourself lucky. This type of test allows a student to open any types of notes, texts, or any other resource materials such as a book. The purpose of this exam is to test the student's ability to look for knowledge and information.

Answer:

b Asks students to apply information to new situations

Explanation:

edge 2020

Types of syndicated services- Optionsa. Purchase panel
b. Tracking data
c. Audit services
d. all of them

Answers

Syndicated services are services needed to pick up information and data for marketing and for the composition of products. So the answer to your question above what are types of syndicated services is Letter D. Since all the choices involves and connects to what syndicated services means.

A browser allows you to set preferences for using the browser. These preferences include all of the following excepta. creating cookies.
b. storing a message.
c. setting alerts.
d. setting security levels.

Answers

storing the message is not included in it

If a driver who is under the age of 21 is stopped by a law enforcement officer and shown to have a BAL of .02 or greater, he or she will have his or her driving privilege suspended for ________.

Answers

its actually BAC (clood Alchohol Content) and  it dependsn on what state you live in, and usually first time offenders with a BAC over 0.15 will have their license suspended for 90 days. but again it depends on the state. and anything below a 0.08% will just result in a warning but what state is it?

Choose the term that describes each step of the cycle.------- : gets next instruction

---------- : interprets instruction

----------- : carries out instruction

------------ : saves result of instruction

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

This question is about to tell the best and suitable terms for the given descriptions in the question.

As we know that a computer program is based on sets of instructions. The CPU carries out the processing using the fetch decode and execute cycle.

It is responsible for implementing a sequence of instructions called a computer program that takes input, processes them, and outputs the result based on processing.

A CPU mainly has three components such as control unit, Arithmetic logic unit,  and register.

The control unit controls all parts of the computer system. It manages the four basic operations of the Fetch Execute Cycle such as Fetch, Decode, Executes, and Storage.

So the correct terms of this question are:

Fetch: Gets next instruction

Decode: interprets the instruction

Execute: Carries out instruction.

Store: Save results of instruction.

The complete steps are:

Fetchgets the next instruction.

Decode interprets instruction.

Executecarries out instruction.

Store saves the result of the instruction.

The terms that describe each step of the cycle in a computer's processing are as follows:

Fetch: This step "gets the next instruction." It involves retrieving the next instruction from memory to be executed by the processor.

Decode: This step "interprets the instruction." In this phase, the processor decodes the fetched instruction to understand what operation it needs to perform.

Execute: This step "carries out the instruction." Here, the processor executes the decoded instruction, which could involve performing calculations, data manipulation, or other operations.

Store (also known as Write Back): This step "saves the result of instruction." After the execution phase, if the instruction modified data in memory, this step writes back the results of the executed instruction into the appropriate memory location.

These four steps together make up the basic fetch-decode-execute cycle of a computer's central processing unit (CPU). The cycle is repeated for each instruction the computer processes, enabling it to perform tasks and run programs.

To learn more about central processing units;

brainly.com/question/6282100

#SPJ3

Write the definition of a function named sumArray that receives two parameters: an array of element type int and an int that contains the number of elements of the array. The function returns the sum of the elements of the array as an int.

Answers

Answer:

// here is program in C++.

#include <iostream>

using namespace std;

// function to calculate sum of elements of array

int sumArray(int ar[],int n)

{

   // variable

   int sum=0;

   for(int a=0;a<n;a++)

   {

   // calculate sum of all elements

       sum=sum+ar[a];

   }

// return sum

 return sum;

}

// driver function

int main()

{

 // variable

  int n;

  cout<<"enter the number of elements in array:";

  // read the number of elements

  cin>>n;

  // Declare an array of size n

  int ar[n];

  cout<<"enter "<<n<<" elements:";

  // read the elements of array

  for(int x=0;x<n;x++)

  {

      cin>>ar[x];

  }

   // call the function with parameter array and n

   // print the sum

  cout<<"sum of "<<n<<" elements of array is: "<<sumArray(ar,n)<<endl;

   return 0;

}

Explanation:

Read the number of elements and assign it to "n".Then create an array of size n of integer type.Read n elements of the array.Call the function sumArray() with parameter array and n.Here it will calculate the sum of all elements and return an integer which holds the sum of all elements.

Output:

enter the number of elements in array:5

enter 5 elements:3 6 12 9 5

sum of 5 elements of array is: 35