Complete Question
The complete question is shown on the first uploaded image
Answer:
The probability is 
Explanation:
The explanation is shown on the second and third uploaded image
Answer:
E = 2940 J
Explanation:
It is given that,
Mass, m = 12 kg
Position at which the object is placed, h = 25 m
We need to find the potential energy of the mass. It is given by the formula as follows :
E = mgh
g is acceleration due to gravity

So, the potential energy of the mass is 2940 J.
Answer:
laminar flow
Explanation:
In fluid dynamics, laminar flow is characterized by fluid particles following smooth paths in layers, with each layer moving smoothly past the adjacent layers with little or no mixing.
Answer:
The sentence excerpted from the e-mail uses passive voice.
Given the purpose of your message, this voice is appropriate.
Explanation:
Because the objective is to remedy the situation a passive voice is great because it emphasizes the action and the object instead of the subject.
We want to emphasize the document and the incorrect information, not our colleague.
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration