Answer:
36 square root 2 also known as C
Step-by-step explanation:
30+70÷8÷5-1=
=30.75
hope this helps
An exponential behavior can be observed.
Let x be the number of years she has to wait.
100((1+0.08/12)^12x) = 150
Now solve for x.
log base 1.08/12 of 1.5 = 61.02 approx
12x=61.02
x=5.09 years
Answer:
i think its 48 but dont trust me im just doing this for points hope you get a good grade on it
Step-by-step explanation:
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)