Answer:
Cornell daddy is the best
Explanation:
he Cornell method provides a systematic format for condensing and organizing notes without laborious recopying. After writing the notes in the main space, use the left-hand space to label each idea and detail with a key word or "cue."
Method: Rule your paper with a 2 _ inch margin on the left leaving a six-inch area on the right in which to make notes. During class, take down information in the six-inch area. When the instructor moves to a new point, skip a few lines. After class, complete phrases and sentences as much as possible. For every significant bit of information, write a cue in the left margin. To review, cover your notes with a card, leaving the cues exposed. Say the cue out loud, then say as much as you can of the material underneath the card. When you have said as much as you can, move the card and see if what you said matches what is written. If you can say it, you know it.
Advantages: Organized and systematic for recording and reviewing notes. Easy format for pulling outmajor concept and ideas. Simple and efficient. Saves time and effort. "Do-it-right-in-the-first-place system."
Disadvantages: None
When to Use: In any lecture situation.
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;
}