Answer:
true I know this cuz I smart
Answer:
Anxiousness and depression
Suicidal Thoughts
Anger
Explanation:
Three major side affects of cyber bullying are
- Anxiousness and depression
- Suicidal Thoughts
- Anger
Anxiousness and depression
Cyber bullying takes away self esteem and self confidence.Lack of self esteem makes person to feel bad about him/her self and lack of confidence makes taking daily life decision very difficult which all adds up to stress
Anger
Some people might feel powerless while others strike back on the bullies in anger.Unchecked anger can be very dangerous.Burning in the flames of anger a person will plot revenge and can go to any means for this. This starts a never ending bully-victim cycle
Suicidal Thoughts
Depression if not cured can lead to suicidal thoughts. When a person is felling low and have no self confidence death seems an easy way out.
The program below is able to calculate the area of a circle inscribed in a Square.
<h3>What is a program?</h3>
A program is a set of instructions given to the computer with specific end results in mind.
<u>Sample program in Java
</u>// Java Program to find the area of
// an inscribed circle in a square.
import java.io.*;
class GFG {
static double PI = 3.14;
// Function to find area of an
// inscribed circle in a square.
static double areaOfInscribedCircle(float a)
{
return ( PI / 4 ) * a * a;
}
// Driver code
public static void main (String[] args)
{
float a = 8;
System.out.println("Area of an inscribed"
+ " circle: " + areaOfInscribedCircle(a));
}
}
Learn more about programs at :
brainly.com/question/1538272
#SPJ1