Answer:
The answer to your question is letter B
Step-by-step explanation:
Process
1.- Write the function
f(x) = - 2x² + 2x - 3
Find f(5)
2.- Substitute x for 5
f(5) = -2(5)⁵ + 2(5) - 3
3.- Simplify
f(5) = -2(25) + 10 - 3
f(5) = -50 + 7
f(5) = -43
Answer:
The evolution from vesicles to true cells was enabled by the development of
Step-by-step explanation:
The answer is C
Please leave a thanks and brainliest <3
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;
}