If you attach a photo, that might help
Answer:
<em>the</em><em> </em><em>correct</em><em> </em><em>answer</em><em> </em><em>is</em><em> </em><em>a.</em><em> </em><em>Word</em><em> </em><em>processing</em><em>.</em>
Explanation:
<em><u>hope</u></em><em><u> </u></em><em><u>this</u></em><em><u> </u></em><em><u>works</u></em><em><u> </u></em><em><u>out</u></em><em><u>!</u></em><em><u>!</u></em><em><u>!</u></em><em><u>!</u></em><em><u>!</u></em>
Answer: A) Planning
In order to come up with a successful website, you need to plan. You need to plan your first steps. Figure our what you need to do. Then you can consider the latest tech or design considerations. Planning always comes first, so you know your next step, and what your going to do.
-DustinBR
Answer:
test whether a user entered a value
Answer in Python:
<em># Define program constants</em>
PI = 3.14
radius = 8
height = 5
<em># Welcome the user to our program</em>
print("### Calculating volume of Cylinder with Radius of 8m and Height of 5m...")
<em># Calculate the volume</em>
volume = PI * radius ** 2 * height
<em># Print the result</em>
print("The cylinder volume is:", volume, "m³")
References:
- https://www.w3schools.com/python/python_variables.asp
- https://www.w3schools.com/python/python_operators.asp
- https://www.w3schools.com/python/ref_func_print.asp