To me the answer is B because that one doesn't really sound right compared to the other answers.
Answer:
It is either C or E, but definitely not A, B, or D
I'm not 100% on if it's C or E though, so I don't want to steer you wrong
Answer:
1) its because we managed to divide the answer so it is not a prime number.
2)
Code:
#include <stdio.h>
int main()
{
int i, j, n, isPrime; // isPrime is used as flag variable
/* Input upper limit to print prime */
printf("Enter your n : ");
scanf("%d", &n);
printf("Prime numbers from 1 to %d:\n", n);
/* Find all Prime numbers between 1 to n */
for(i=2; i<=n; i++)
{
/* Assume that the current number is Prime */
isPrime = 1;
/* Check if the current number i is prime or not */
for(j=2; j<=i/2; j++)
{
/*
* If i is divisible by any number other than 1 and self
* then it is not prime number
*/
if(i%j==0)
{
isPrime = 0;
break;
}
}
/* If the number is prime then print */
if(isPrime==1)
{
printf("%d,\n ", i);
}
}
return 0;
}
Answer:
the art is something that is very important in our lives, it's impossible live without it, we always go to the cinema or listen some music, so the artists think it's important the governments help them because today the art is not valued, most of the people think people who do art wont have a good future and try to stop them from doing that, so it's important the governments give some support for them, because a lot of time their parents don't give support for them and they have to go out home, with no money, just because they want to do what they love in the future. But a lot of people think this would be a waste of money, but just because they don't give value to the art and they think is a west of time, but it's not ! art is so important and we need to give value to the artists, because they will do beautiful and historic things in the future.
Explanation: