Answer:
, or 10/3
Step-by-step explanation:
4/3 ÷ 2/5 = 4/3 × 5/2 = 20/6 = 
<span>b-3/15=-1
We simplify the equation to the form, which is simple to understand
<span>b-3/15=-1
Simplifying:
<span>b-0.2=-1
We move all terms containing b to the left and all other terms to the right.
<span>+1b=-1 + 0.2
We simplify left and right side of the equation.
<span>+1b=-0.8
We divide both sides of the equation by 1 to get b.
<span>b=-0.8
</span></span></span></span></span></span>
1 billion is=1,000,000,000
count the zeros since it has only 10's as the factors
9 zeros
the 10=2 times 5
so there are 10 2's and 10 5's so the prime factorization is
2 times 2 times 2 times 2 times 2 times 2 times 2 times 2 times 2 times 2 times 5 times 5 times 5 times 5 times 5 times 5 times 5 times 5 times 5 times 5 or
2^10 times 5^10
10.5 in the form of a/b = 105/10 = 21/2
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