Answer:
B 14/25(56.00%)
Step-by-step explanation:
167+57=224, which means 224/400(56.00%) people would have brown or hazel eyes. 224/400 is also equivilant to 14/25
Answer:
Step-by-step explanation:
Calculating the average speed during this time interval is the same as calculating how many km he traveled per hour.

This is also the same thing as the unit rate. Do that division and find that he traveled 100 km/hr.
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;
}
Answer:
7x - y = -7
Step-by-step explanation:
Hope this helps!