Answer:
<u>Advantages of wireless communication:-</u>
- Flexibility in transferring the message through communication for which the sender and receiver can be in any place.
- Speed of the communication is accurate and fast
- Due to no wiring , the cost of the wireless communication is less.
<u>Disadvantages of wireless communication:-</u>
- The security is less as the data can be accessed by unauthorized sources at times.
- The setting up of wireless communication complex and expensive.
<u>Advantages of wired communication:-</u>
- Simple configuration
- Higher bandwidth is present in the cable
- High reliability
<u>Disadvantages of wired communication:-</u>
- Mobility is present for communication
- Installation requires lot of time due to cabling
- Requires extra devices for covering large areas for communication
Wireless communication is more preferable than wired communication in the conditions like communication connection that should face low damage and longer life which is not present in cable connection as they break or get disrupted.The flexibility of moving while communication is required by most people so, they use wireless communication .
Answer:
Heyy I'm feeling sad and stressed. Wbu?
Explanation:
Answer:
Option A:
<input name="name" id="id" type="number" value="value" step="value" min="value" max="value" />
Explanation:
Spinner control is a graphical control element where user can adjust the value by pressing up or down arrow button. An example is given in the attached image.
In HTML, one of the key attributes we must use to create a spinner control is "step". The attribute "step" is required to specify the interval of the step value when user press the up or down arrow button.
If we set the attribute values as follows:
- type = "number"
- value = 2
- min = 0
- max = 10
The setting above will give a spinner control with a range of legal numbers between 0, 2, 4, 6, 8 and 10.
def average_value_in_file(filename):
f = open(filename)
total = 0
count = 0
for x in f.read().splitlines():
total += int(x)
count += 1
return total/count
print(average_value_in_file("input.txt"))
I used an input file that looks like this:
1
1
1
1
Answer:
50
Explanation:
as binary search will search the array by dividing it into two halves till it find the value.