Answer:
the arrow goes counter clockwise
Explanation:
In the battery symbol, the large line represents + and the smaller, thick line represents -. Since current flows from + to -, the direction is counter clockwise.
Answer:
The independent variable is Native American participants
Explanation:
Why Native Americans is the independent variable is bacause the survey population is Native Americans and the result of the survey won't be affected by the gender and age of the native american participants. So it the independent variable.
Answer:
Hybrid cloud.
Explanation:
Hybrid cloud includes an IT architecture of two or more private, public, or community clouds, but each cloud remains separate and is only linked by technology that enables data and application portability.
Organizations that use hybrid cloud are usually more flexibile to choose the best cloud for each application and at such meeting their objectives effectively and efficiently at little cost.
Answer:
#include <iostream>
using namespace std;
int main() {
int num, check=0;
for(int num = 1; num<=100;num++){
for(int i = 2; i <= num/2; i++) {
if(num % i == 0)
{
check=1;
break; } }
if (check==0) { cout <<num<<" "; }
check = 0;
}
return 0;
}
Explanation:
This line declares num as integer which represents digits 1 to 100.
A check variable is declared as integer and initialized to 0
<em> int num, m=0, check=0;
</em>
This for loop iterates from 1 to 100
for(int num = 1; num<=100;num++){
This iterates from 2 to half of current digit
for(int i = 2; i <= num/2; i++) {
This checks for possible divisors
if(num % i == 0)
{
If found, the check variable is updated to 1
check=1;
And the loop is terminated
break; } }
The following if statement prints the prime numbers
if (check==0) { cout <<num<<" "; }
check = 0;
}