Answer:
Radiation from the screens will damage your brain and kill brain cells.
The lights dry out your eyes and you blink a lot more.
Explanation:
Answer:
its A
Explanation:
the national archives is open to anyone who visits
Answer:
<em><u>Understand that people are learning from you in ways that you may never know. Other people need you to be human to the fullest. More importantly, you need yourself to be human to the fullest. When you make mistakes, take responsibility and learn from them.</u></em>
Answer:
public static void timesTen(int num){
int numTimesTen = num*10;
System.out.println("The number "+num +" times 10 is "+numTimesTen);
}
Explanation:
In the code snippet above which is written in Java programming language, A method (function) is created. The return type is void since this method according to the question will only give an output and not necessarily return a value.
The methods only int parameter is multiplied by 10
Using string concatenation the following output is given
The number 5 times 10 is 50: For an argument of value 5