Answer: A :is concerned with defending users’ freedom of use
C:makes source code available for editing
Explanation:
Answer:
weights = []
total = 0
max = 0
for i in range(5):
weight = float(input("Enter weight " + str(i+1) + ": "))
weights.append(weight)
total += weights[i]
if weights[i] > max:
max = weights[i]
average = total / 5
print("Your entered: " + str(weights))
print("Total weight: " + str(total))
print("Average weight: " + str(average))
print("Max weight: " + str(max))
Explanation:
Initialize the variables
Create a for loop that iterates 5 times
Get the values from the user
Put them inside the array
Calculate the total by adding each value to the total
Calculate the max value by comparing each value
When the loop is done, find the average - divide the total by 5
Print the results
Answer:
In the given question the first line is correct, i.e. "Describes the inputs, outputs, and processing logic for all program modules".
Explanation:
The documentation is a recorded text or image, which is preceding or in the code base of the programs, whether it describes how well the program works and how it is being used, and things in various positions can be influenced by people, and the wrong option can be described as follows:
- In the documentation, it can't consist of rules and data.
- In can't include a dictionary, flow maps, screen designs and device requests that began the program.
- In can't provide links within the program.
Answer:
because he needs to connect them all to the sane network (i think)