Answer:
.0039
Step-by-step explanation:
 
        
             
        
        
        
Answer:
3.5 = x + 4*y
4 = 2x + 2*y
Step-by-step explanation:
The total distance ran by Avi is the sum of the distance from his house to the track, and the total distance ran in the tracks (that is, the distance of one lap times the number of laps Avi ran).
If we call 'd' the total distance and 'k' the number of laps, we have the equation:
d = x + k*y
So with the data given, we can have the following system:
3.5 = x + 4*y
4 = 2x + 2*y
In the second equation, we have 2x because Avi ran from his home to the track, and in the end ran back home, so Avi ran the distance x two times.
 
        
             
        
        
        
Answer:
The answer is -343.
Step-by-step explanation:
If a term doesn't have an exponent, it's considered that the exponent is 1 (so basically, (-7)² x (-7)^1.
Multiply the terms with the same base (by adding the exponents - (-7)²+1<- (as the exponential value) (couldn't find the sign so sorry.)
Add the numbers: (-7)³
A negative base raised to an odd power equals a negative: -7³
Write the problem out: -(7 x 7 x 7).
Multiply: -343
 
        
             
        
        
        
Answer:
F. -5s = -47.5 
Step-by-step explanation:
F. -5s = -47.5 
s = -47.5 / -5
s =  9.5 
This is the correct option
G. -3 + s = 12.5
s = 12.5 + 3 
s = 15.5 (Incorrect option)
J. –1 + s = 10.5
s = 10.5 + 1
s = 11.5 (Incorrect option)
 
        
             
        
        
        
Using pseudocode:
printArray(arr[], integers)
      DECLARE integers
      integers = SizeOf(arr)
      FOR i = 1 to integers // loop from 1 to the number of elements in arr[]
            print(i)
            print('')
            i = i + 1
      ENDFOR
END