Answer:
The answer is weak, Have a nice day! :)
Explanation:
D) weak
I doub between:
<span> C) A series of 4 full size, but individual tweets (with the tweet copy appearing above the first image of the series) D) A collage format, with full size images</span>
Answer:
Explanation:
The code does not fail on the first step since 1900 divided by 4 is actually 475 and has no remainder, meaning that it should return True. The code won't work because the if statements need to be nested in a different format. The correct algorithm would be the following, which can also be seen in the picture attached below that if we input 1900 it would output is not a leap year as it fails on the division by 400 which gives a remainder of 0.75
input_year = int(input())
if input_year % 4 == 0:
if input_year % 100 == 0:
if input_year % 400 == 0:
print(input_year, "is a leap year")
else:
print(input_year, "- not a leap year")
else:
print(input_year, "is a leap year")
else:
print(input_year, "- not a leap year")
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.
A formula key components are:
- Functions
- References
- Operators
- Constants.
<h3>What is a formula?</h3>
This is known to be a kind of mathematical relationship or rule that is said to be expressed in form of symbols.
Therefore, A formula key components are:
- Functions
- References
- Operators
- Constants.
Learn more about formula from
brainly.com/question/2005046
#SPJ11