Answer:
third one
Explanation:
its where the wolf cared for them
The correct answer is:
a) Problem and solution
In composition, a problem and solution format is a type of text where you can identify a problem and proposing one or more solutions. A problem-solution essay is a type of argument. "This kind of texts involve argumentation in that the writer seeks to convince the reader to take a particular course of action. In this case the writer is trying to convince you to own a pet.
It is Hasty generalization. Hope this helps and I'm not too late!
Answer is A. Marco believes that cowboy boots are cool. He sees many people on the street wearing them and decides to buy a pair for himself.
Inductive reasoning is the opposite of deductive reasoning. On one side, deductive reasoning begins with a general statement or idea, then evaluates and analyses the chances to arrive to a logical conclusion. On the other, inductive reasoning creates wide generalizations based on particular observations. Basically, there is information, and then conclusions are made based on that information.
In the case of Marco, he makes a particular observation (many people wear boots on the street), and then arrives to a conclusion (he assumes that boots are cool), so he decides to go with that (he buys himself a pair of boots).
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;
}