Answer:
-1
Explanation:
The given equation can be written as
-3x +y^2 +2y +1=b+1
-3x +(y+1)^2=b+1
(-3x-b)+ (y+1)^2=1
This is to be compared with (x-a)^2 + (y-b)^2=c^2
where (a,b) is the center, and c is the radius of the circle.
Thus, we get y=-1, and this is our answer.
Answer:
Proxy server.
Explanation:
Proxy server can be used to replace internal network addresses with one or more different addresses so the traffic that actually travels over the public Internet does not reveal the address structure of the internal network to outsiders.
Answer:
Go to Insert and click on Text and underneth that click header and footor.
Explanation:
You can do a Header and Fotter in Excel. ALl you have to do if go in the document you are working in and you click on Instert tab and then click on Header and Fotter. It gives you an option to make a header for your excel wookbook.
Answer:
This question is answered in Python
lst=["January", "February", "March", "April", "May", "June"]
index = lst.index('May')
lst.pop(index)
print(lst)
Explanation:
This initializes the list
lst=["January", "February", "March", "April", "May", "June"]
This gets the index of May
index = lst.index('May')
This removes "May" from the list using pop()
lst.pop(index)
This prints the updated list
print(lst)