The PING command is used to establish connectivity
I would imagine car would still be the best means , it's tough to define without knowing where he lives and how much he travels
The given statement that is true is; B: The Formatting, Standard, and Drawing toolbars are displayed.
<h3>Which statement is true of microsoft word?</h3>
In Microsoft word, there are different toolbars that are useful in operation. Now, from the given image from Microsoft word, we can see that toolbar is clicked. However in the fly-down from it, we see that the standard, formatting and drawing toolbars are ticked and as such they are the ones displayed.
Looking at the options, the correct one is Option B because it tells us that Formatting, Standard, and Drawing toolbars are displayed.
Read more about a true statement at; brainly.com/question/25605883
Answer:
#program in python.
#variables
slice_area=14.125
pi=3.14159
#read diameter
d=int(input("Enter diameter of pizza:"))
#area of pizza
area=pi*(d/2)*(d/2)
#number of slice
no_slice=int(area/slice_area)
#print slice
print("total silce are:",no_slice)
Explanation:
Declare and initialize a variable "slice_area" with 14.125 which is the area of a pizza slice.Initialize a variable "pi" with 3.14159.Then read the diameter of pizza.Find the area of pizza as "area=pi *d/2*d/2".Divide the total area with area of pizza slice.This will be the number of slice.
Output:
Enter diameter of pizza:20
total silce are: 22