D scanner She can scan the files and email a digital copy.
Answer:
def newton(n):
#Define the variables.
t = 0.000001
esti = 1.0
#Calculate the square root
#using newton method.
while True:
esti = (esti + n / esti) / 2
dif = abs(n - esti ** 2)
if dif <= t:
break
#Return the result.
return esti
#Define the main function.
def main():
#Continue until user press enters.
while True:
try:
#Prompt the user for input.
n = int(input("Enter a number (Press Enter to stop):"))
#display the results.
print("newton = %0.15f" % newton(n))
except:
return
#Call the main function.
main()
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:Protects the local network from outside access
Explanation:Proxy is a type of serves as the mediator in computer network for connecting the network with the user system. These servers are responsible for maintaining the security against any unauthorized access in the system or internet,privacy and other functions.. It helps in protecting the whole network connection by taking the control at the servers .