Answer:
sampling distribution
Explanation:
Sampling distribution is distribution of multiple samples' satistics of a population.
Answer: I'm a boy, but I'm not toxic or fake
Explanation:
A type of shoot in which continuous lighting used is: 1) studio.
<h3>What is a photoshoot?</h3>
A photoshoot simply refers to a photography session which typically involves the use of digital media equipment such as a camera, to take series of pictures (photographs) of models, group, things or places, etc., especially by a professional photographer.
<h3>The types of shoot.</h3>
Basically, there are four main type of shoot and these include the following:
In photography, a type of shoot in which continuous lighting used is studio because it enhances the photographs.
Read more on photography here: brainly.com/question/24582274
#SPJ1
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100
Hacking is correcttttttttt