Describe how one device can send a bit to another device?
There are elements in order for a device to send a bit, first is the transmitter source where anelectronic device needs to send a message to another device; then the secondelement ofcommunication is the receiver source which receives a message and interprets it; a thirdelement would the medium which provides a pathway for the message to be send andreceive, and the message whether voice, data, image, signal or video where each of these<span>messages are sent across the medium first by converting then into binary digits, or bits.
I hope this helped! Please mark as Brainliest If i'm right! Have a Nice day!</span>
Answer:
by phone and by wifi internett
The motherboard contains the central electronic components of the computer.
Answer:
signal repeaters.
Explanation:
The best device to use in this scenario would be signal repeaters. These basically grab an already existing signal and repeats it in a specific direction therefore amplifying the range. These devices are usually used when a large network system is not reaching certain devices that are located too far away. These devices are then placed in midpoints between the network and the device and aimed towards the direction of the device. It then picks up the existing signal and retransmits it to the devices' location so that the device can pick up the network signal and access it.
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