educational tutoring
Explanation:
the rest you should find and be able to use from a Google search
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: In this case, both pronouns can be used to complete the sentence as both terms grammatically make sense, however whom is the prefered pronoun.
Explanation:
The difference between “who” and “whom” is the same as the difference between “I” and “me;” “he” and “him;” “she” and “her;” etc. Who, like other pronouns such as I he, and she, is a subject. So, it is the person performing the action of the verb. On the other hand, whom, acts like me, him, and her in a sentence. It is the object. Therefore, it is the person to/about/for whom the action is being done.
But what does that mean? “Who,” the subjective pronoun, is the doer of an action. For example, “That’s the girl who scored the goal.” It is the subject of “scored” because the girl was doing the scoring. Then, “whom,” as the objective pronoun, receives the action. For instance, “Whom do you like best?” It is the object of “like”.
Who should be used to refer to the subject of a sentence.
Whom should be used to refer to the object of a verb or preposition.
Lines 1 and 6 because they both say "They'd banish us; you know!"
Answer:
found
Explanation:
Joseph Cornell began creating black and white collages with clippings from 19th-century engravings, then created three-dimensional works such as small boxes and glass bells. His first boxes were exhibited in 1936. He always refused to sell his boxes, they were actually gifts for people he knew or admired.