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;
}
The use of bullets to divide different ideas and create a list effect
Answer:
True.
Explanation:
Best answer tests always include the correct answer as one of the possible answer choices.
This ultimately implies that, a best answer test comprises of group of answer choices, usually four and among them lies only one correct answer.
For example, the product of 5 and 2 is?
Group of answer choices.
A. 1
B. 2
C. 8
D. 10
The best answer choice would be "D. 10" because 5 multiplied by 2 is 10.
This question is incomplete. Here's the complete question.
Literary History: The Epic and the Epic Hero, by McGraw-Hill Education.
People are living in fear as an evil force threatens to destroy the land. Then a hero appears. Brave, strong, and good, the hero defeats the evil force and saves the land and its people. You know this story well. It is one of the most widely told stories in literature, as well as one of the oldest. In times past, the deeds of the hero were told in the form of an epic—a long narrative poem that recounts, in formal language, the exploits of a heroic figure from legend, religion, or history. Ancient epic poets and their audiences viewed their epics as records of their peoples’ early histories.
Based on the first paragraph, what is the relationship between epics and the earliest history of the societies that produced the epic?
Answer:
Epic poetry serves as an early historical record of the societies that produced it.
Explanation:
The paragraph explains that epic poetry formally narrates stories of heroic figures from legends, religious ideas, and even history. Furthermore, in a succeeding paragraph the use of epics a resource for historians and anthropologists to better understand the culture of societies under study.