D. <span>use clear, short paragraphs.</span>
Answer:
True.
Explanation:
An investigator would like to do an internet-based college student survey to gather data regarding their behavior as well as drug use. Even so, specific identifications are still not gathered and IP addresses might be available in the set of data. Damage threat must be assessed both by the magnitude (or severity) and the likelihood (or likelihood) of the hurt.
A. The restaurant review contains data but is not data itself.
I'm sorry if that's wrong, but that seems right to me.
Answer:
total = 0
for i in range(4):
bill = float(input("Enter bill for quarter " + str(i+1) + ": "))
total += bill
average = total / (4 * 3)
if average > 75:
print("Average monthly bill is $" + str(average) + ". Too much water is being used")
if 25 <= average < 75:
print("Average monthly bill is $" + str(average) + ". A typical amount of water is being used")
if average < 25:
print("Average monthly bill is $" + str(average) + ". Thank you for conserving water")
Explanation:
*The code is in Python.
Create a for loop that asks the user to enter the bill for 4 quarters and calculate the total of the bills
Calculate the average monthly bill, divide the total by 12
Check the average for the given conditions. Depending on its value print the required message along with the average monthly bill
Answer:
raster
Explanation:
-> A <u>raster</u> image consists of a grid of colored pixels.
To choose our answer we can look at the definition for each of the options:
[✘] wireframe - "a skeletal three-dimensional model in which only lines and vertices are represented"
[✘] vector - "denoting a type of graphical representation using straight lines to construct the outlines of objects"
[✔] raster - "a rectangular pattern of parallel scanning lines followed by the electron beam on a television screen or computer monitor'
[✘] rendering - "the processing of an outline image using color and shading to make it appear solid and three-dimensional"
<em>(All definitions are quoted from Oxford Languages)</em>
-> Based on these definitions, raster makes the most sense
Have a nice day!
I hope this is what you are looking for, but if not - comment! I will edit and update my answer accordingly. (ノ^∇^)
- Heather