Answer:
total = 0
for i in range(4):
    bill = float(input("Enter bill for quarter " + str(i+1) + ": "))
    total += bill
average = total / (4 * 3)
if average > 75:
    print("Average monthly bill is $" + str(average) + ". Too much water is being used")
if 25 <= average < 75:
    print("Average monthly bill is $" + str(average) + ". A typical amount of water is being used")
if average < 25:
    print("Average monthly bill is $" + str(average) + ". Thank you for conserving water")
Explanation:
*The code is in Python.
Create a for loop that asks the user to enter the bill for 4 quarters and calculate the total of the bills
Calculate the average monthly bill, divide the total by 12
Check the average for the given conditions. Depending on its value print the required message along with the average monthly bill
 
        
             
        
        
        
Answer:
require direct line-of-sight scanning.
Explanation:
Unlike radio frequency identification (RFID) tags, bar codes require direct line-of-sight scanning. Meaning you need a device that can scan the bar code and the scanner needs to be directly pointing at the barcode without anything in the way. This is because bar codes work by embedding the information in a design of lines that need to be scanned to retrieve the information. If anything gets in the way it interrupts the scanning process and the data is not correctly transmitted. RFID tags on the other hand do not need a direct line of sight since the information is transferred through radiofrequency. This allows the data to be transferred without a line of sight and at a distance of up to 300ft.
 
        
             
        
        
        
Answer:
A microprocessor is a computer processor where the data and control is included in a single integrated circuit
Explanation: