Answer:
below
Explanation:
really nothing because you cant prevent cyberbullying in any way its going to happen at anytime anywhere you can act against it by doing a orginazation to try and prevent it.
Software are parts of a computer system that can be seen but not touched.
Hardware are parts of a computer system that can be seen and touched
Answer:
Welcome
Explanation:
This app is not for talking it is for educational purposes so yeah your welcome
BUT NO HATE YOU LOOK COOL MY DUDE
Following are the program to calculate the power of two:
Program Explanation:
- Defining an integer variable "i" that hold an integer value.
- Defining a for loop that checks "i" value in between 20, inside this it calculates power of two.
- At the last use print method to print its value.
Program:
i=1#holding integer value in i
for i in range(20):#defining a for that starts 1 to 20
i = 2 ** i#calculate power of 2 in i variable
print(i)#print value
Output:
Please find the attached file.
Learn more:
brainly.com/question/23170807