Ask Question
11 August, 23:25

Brianna has a process that has two inputs but only one output.

- This is an error as there needs to be the same amount of inputs as outputs

- This is an error as process do not have inputs or outputs

- This is normal as all processes have two inputs and one output

- This is normal as all processes need at least one input and at least one output

- This is an error as processes only produce output

+5
Answers (1)
  1. 12 August, 02:32
    0
    This is normal as all processes need at least one input and at least one output

    Explanation:

    In a process, it is only necessary to have at least one input and one output. However, it is possible to have multiple inputs and a single output, or even have a single input and multiple outputs. Here is an example of a process with two inputs and a single output in c + +. Which is simply a sum:

    #include

    int main ()

    {

    / / Variables.

    int NumberA;

    int NumberB;

    int Sum;

    //Requesting numbers.

    std::cout<>NumberA;

    std::cout<>NumberB;

    //Sum

    Sum=NumberA+NumberB;

    std::cout<<"The sum is:"<
    return 0;

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Brianna has a process that has two inputs but only one output. - This is an error as there needs to be the same amount of inputs as outputs ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers