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:
No.
Explanation:
From my knowledge, negative 8 is 8 units to the left of zero, while 21 is 21 units to the left.
This means that they are two different negative numbers! If you see an equation like this, it would be labeled as false.
I'm quite sure I am correct, tell me so if otherwise! :)
#SpreadTheLove
Answer:
printStars(35);
Explanation:
public class Question {
public static void main(String args[]) {
printStars(35);
}
public static void printStars(int numberOfStars){
for(int i = 1; i <= numberOfStars; i++){
System.out.print("*");
}
System.out.print("\n");
}
}