4/20, 20% chance. The store has 20 puppies. Out of them is 4 poodles. Divide 4 by the total(20). And you get 0.2, remove the decimal place and add it in front of the 0 .02 reverse the numbers 20. Replace the period with a %.
Answer:
Step-by-step explanation:
The program is an illustration of loops
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition
<h3>The main program</h3>
The program written in Python, where comments are used to explain each line is as follows:
#This initializes sum to 0
summ = 0
#This gets input for the first number
num = int(input())
#This is repeated while num is not -1
while num!= -1:
#This calculates the sum
summ+=num
#This gets input for the num
num = int(input())
#This prints the sum
print(summ)
Read more about loops at:
brainly.com/question/16397886
Answer:
The probability that the result is positive is P=0.04475=4.475%.
Step-by-step explanation:
We have the events:
D: disease present
ND: disease not present
P: test positive
F: test false
Then, the information we have is:
P(D)=0.005
P(P | D)=0.99
P(P | ND)=0.04
The total amount of positive test are the sum of the positive when the disease is present and the false positives (positive tests when the disease is not present).

The probability that the result is positive is P=0.04475.