Answer:
True
Explanation:
for loop is used to repeat the process again and again until the condition not failed.
syntax:
for(initialize; condition; increment/decrement)
{
Statement
}
But we can omit the initialize or condition or increment/decrement as well
the syntax after omit the initialization,
for( ; condition; increment/decrement)
{
Statement
}
The above for loop is valid, it has no error.
Note: don't remove the semicolon.
You can omit the condition and increment/decrement.
and place the semicolon as it is. If you remove the semicolon, then the compiler show syntax error.
Its B no doubt
cuz ik how to do this i took classes for this so ik im right ight
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:
Explained
Explanation:
Improved Data Sharing and Data Security
Proper database management systems help increase organizational accessibility to data, which in turn helps the end users share the data quickly and effectively across the organization. A management system helps get quick solutions to database queries, thus making data access faster and more accurate.
Effective Data Integration
Implementing a data management system enhances an integrated picture of an organization’s operations. It becomes easy to see how processes in one segment of the organization affect other segments.
Increased productivity of end user
Deploying a database management system, will always result in the increased productivity of users.It empowers the end user to make well informed and quick decisions that can contribute in success and failure of any organization.