Answer:
by simply just logging on and using the internet.
Explanation:
Answer:
The period of third generation was from 1965-1971. The computers of third generation used Integrated Circuits (ICs) in place of transistors. ... This development made computers smaller in size, reliable, and efficient. In this generation remote processing, time-sharing, multiprogramming operating system were used.
Explanation:
hope it helps
In very simple terms, netiquette is etiquette on the internet. It is a short form of network etiquette. It represents the importance of proper manners online. Common guidelines for good netiquette include being very courteous and avoiding instances of cyber-bullying. Although the specific protocols governing netiquette may differ depending on the forum being used, it is equally applicable to emails and surfing the internet, message boards, and chatting. In the workplace, netiquette implies that you have polite manners, and that you would want to build up relationships with people. By showing respect to your colleague through proper netiquette, it will show how productive you can be and as result, you will earn respect. Understanding netiquette in the workplace can save you from embarrassing moments. In sending job emails, for instance, always speak clearly and avoid using capitalized words, spelling errors, or slang.
lst = input("Enter a,b,c: ").split(",")
a = float(lst[0])
b = float(lst[1])
c = float(lst[2])
root1 = (-b + ((b**2-(4*a*c))**0.5))/(2*a)
root2 = (-b - ((b**2-(4*a*c))**0.5))/(2*a)
dis = b**2 - (4*a*c)
if dis > 0:
print("The roots are {} and {}".format(root1, root2))
elif dis < 0:
print("The equation has no real roots")
else:
print("The root is {}".format(root1))
I wrote my code in python 3.8. I hope this helps!