Answer:
The first option which is 'Provide real-time documentation of workload and out-of-pocket expenditures' is incorrect as it does not provide a solution. The second option which is 'Provide real-time documentation of workload and out-of-pocket expenditures' is correct as it does provide a solution.'
Explanation:
Answer:
I'm pretty sure its B.
Explanation:
Input: Force is applied to the pedals by the rider's feet then..
Process: the chain and gear system convert the energy to cause...
Output: the rear wheels to turn and make the bike go foward
Answer:There just different
Explanation:
The world wide web, or web for short, are the pages you see when you're at a device and you're online. But the internet is the network of connected computers that the web works on, as well as what emails and files travel across. ... The world wide web contains the things you see on the roads like houses and shops.
Answer:
Answered below
Explanation:
//Programmed in Java
public double avgList(int [] nums){
int I;
double sumOfNumbers = 0;
double averageOfNumbers = 0;
//Loop over to sum all elements in the list.
for(I = 0; I < nums.length; I++){
sumOfNumbers += nums[I];
}
//Calculate the average
averageOfNumbers = sumOfNumbers/ nums.length;
return averageOfNumbers;
}
Answer:
The program in Python is as follows:
numList = []
num = int(input())
while num != 0:
numList.append(num)
num = int(input())
numList.sort()
for num in numList:
print(num)
Explanation:
This initializes the list
numList = []
This gets input from the user
num = int(input())
This loop is repeated until the user enters 0
while num != 0:
This appends the user input to the list
numList.append(num)
This gets another input from the user
num = int(input())
This sorts the list in ascending order
numList.sort()
This iteration prints the list elements, each on a line
<em>for num in numList:</em>
<em> print(num)</em>