<h3>
Answer: Choice A</h3>
The first line shown in choice A is
which means "the first term is -2"
The next line in choice A means "the nth term (
) is found by multiplying the prior term (
) by 8". Put another way: multiply each term by 8 to get the next term.
first term = -2
second term = 8*(first term) = 8*(-2) = -16
third term = 8*(second term) = 8*(-16) = -128
fourth term = 8*(third term) = 8*(-128) = -1024
and so on.
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
In this item, we are tasked to determine the calculation that can be done in order to determine the length or width of the painted mural in each striped area. This can be done by dividing the total length by the number of stripes as shown in the equation below.
Length per stripe = Total length / number of stripes
Length per stripe = 15 yards / 96 stripes
= 0.15625 yard/stripe
Answer:
320 meters
Step-by-step explanation:
x² + 200x = 166400
It's a square, area should be side²
x² + 2(x)(100) = 166400
x² + 2(x)(100) + 100² = 166400 + 100²
(x + 100)² = 176400
x + 100 = 420
Since these are sides, we just consider the positive square root
x + 100 = 420
x = 320m
Answer:
Step-by-step explanation: