With the use of Push technology, a web server delivers information to users, who have signed up for the service.
<h3>What is push technology?</h3>
This is known to be Software that automatically send information to users. via a Web browser, e-mail, or others.
Note that in the case above, With the use of Push technology, a web server delivers information to users, who have signed up for the service.
Learn more about Push technology from
brainly.com/question/9165574
#SPJ12
Answer:
Following are the modified code to this question:
phrase = "Hi Dad"#defining a variable that stores a string variable
print(phrase.lower())#Use print method that use lower method to print value in lower case
Output:
hi dad
Explanation:
In the above python code, a phrase variable is declared, that store a string value "Hi Dad", and in the next step, a print method is used, and inside the method a lower() method is used, in which it converts the string value into the lower case, that's why the above code output is "hi dad" into the lower case.
Answer:
it's limited
Explanation:
I took the Test on Edgenuity
Answer:
i think its b
Explanation:
i did the test and got it right
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()