Answer:
System software.
Explanation:
The system software is the software which has system need to running Without the system software the computer system will not start and work simply means to interact with the computer system we need system software.
- Briley needs system software to connects the different parts and input-output devices, and it provides the ensuring that the computer system has a power supply available.
- So without the System software, Briley will not interact with the computer system.
Answer:
The output is 28
Explanation:
Required
Determine the output of the code segment
The first line initializes "answer" to 0
The next two lines iterate through lists [2,4] and [3,5
Each of these lists have two elements; So, the number of iterations is 2 * 2 i.e. 4.
In the first iteration
numA = 2, numB = 3, answer = 0
So:

In the second iteration
numA = 2, numB = 5, answer = 5
So:

In the third iteration
numA = 4, numB = 3, answer = 12
So:

In the fourth iteration
numA = 4, numB = 5, answer = 19
So:

Lastly, the value of "answer" is printed
<em>Hence, the output is 28</em>
The correct answer is Works cited page
What the method does, is it takes the rightmost decade and prints it, then divides by 10 and repeats. Effectively this means the number is printed backwards, so the output is 128.