Hello!
I assume you mean 3 facts about computer/technology based things.
Fact: Certain computers are built for video games, where others are not.
Opinion: All computers suck when trying to use video games.
Fact: Not all computers are made for multiple purposes.
Opinion: All good computers are made by apple.
Fact: You can plug in certain things such as keyboards or a mouse, but not all computers have this.
Opinion: Only good computers have built in keyboards and a mouse.
Answer:
C.
More students are affected by cyberbullying than not affected.
Explanation:
I got it correct on Edgenuity 2020.
Answer:
In Python:
def is_power(n):
if n > 2:
n = n/2
return is_power(n)
elif n == 2:
return True
else:
return False
Explanation:
This defines the function
def is_power(n):
If n is greater than 0
if n > 2:
Divide n by 2
n = n/2
Call the function
return is_power(n)
If n equals 2
elif n == 2:
Return True
return True
If n is less than 2
else:
Then, return false
return False