Answer:
Expositions are the place to show the reader a little bit of the location and what kind of time is involved in the story, along with some of the major characters.
Answer:
A. Sonnet poem
Explanation:
An ode poem is a kind of poem, usually praising something. An ode is a form of lyric poetry — expressing emotion — and it's usually addressed to someone or something, or it represents the poet's musings on that person or thing.
In poetry, a sonnet has 14 lines, and each line has 10 syllables. Generally, sonnets are divided into different groups based on the rhyme scheme they follow.
Haiku is a traditional form of Japanese poetry. Haiku poems consist of 3 lines. The first and last lines of a Haiku have 5 syllables and the middle line has 7 syllables. Because Haikus are such short poems, they are usually written about things that are recognizable to the reader.
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:
no lie
when someone goes "no cap" it's mean, truth, no lie.