Answer:
I think the first answer 2 would be the slope and the 1 would be the intercept and for the second one the answer is 5 would be the slope and the other 5 would be the intercept.
Step-by-step explanation:
The formula of a slope:

We have the points (1, k) and (-1, -4) and the slope m = 3/2. Substitute:

Answer:
1/8+1/4
=1/8+2/8
=3/8
Answer:
Amir's car will cost £10348.88 after 23 years.
Step-by-step explanation:
I finally found a UK human!
This is compound interest so you have to find a decimal multiplier and multiply that with £16470 to the power of 23.
The decimal multiplier would be 0.98. This is because you do 100% - 2% as depreciating basically means a decrease, which gives you 98% and then you divide that by 100 to get your decimal multiplier - 0.98.
16470 ×
= £10348.88
I hope that helps you!! ^-^
Answer:
Step-by-step explanation:
#include <stdio.h>
int main()
{
int num1, num2, flag_var, i, j;
/* Ask user to input the from/to range
* like 1 to 100, 10 to 1000 etc.
*/
printf("Enter two range(input integer numbers only):");
//Store the range in variables using scanf
scanf("%d %d", &num1, &num2);
//Display prime numbers for input range
printf("Prime numbers from %d and %d are:\n", num1, num2);
for(i=num1+1; i<num2; ++i)
{
flag_var=0;
for(j=2; j<=i/2; ++j)
{
if(i%j==0)
{
flag_var=1;
break;
}
}
if(flag_var==0)
printf("%d\n",i);
}
return 0;
}