Answer:
Possible consequences for cyber bullying include depression, isolation and illness
Explanation:
The reason for this is when a person is hurt there body tends to go through things to make them feel a certain way about things.
First of all, we will need a function that checks if a number is prime or not:
boolean isPrime(int n){
for(int i=2; i<=math.sqrt(n); i++){
if(n % i == 0) return false;
}
return true;
}
Then, in the main program, we will call this function with all the desired inputs, and we will print the prime numbers:
for(int n=100; n<= 1000; n++){
if(isPrime(n)) print(n);
}
Answer:
D. Distracts the users from core message.
Explanation:
During web development using bright and glaring font colors is often associated with highlighting the key content of the website.
For instance, one can often observe that organisation's logo are presented using bright and glaring font colors or in some other case main key buttons in websites are made attractive using bright colors.
Best example for illustration purpose here is font and colors used by Google for creating Doodle. Google Doodle are always created by using combination of bright and glaring font colors whereas other information on page is presented using light and simple fonts.
Hence the correct option is D.