Answer:
computer Hardware:-The physical of the computer which can be seen or touched is called computer hardware☆Computer needs these hardware devices for performing basic functions like accepting data and instructions .Example(keyboard,mouse,printer etc.)
Computer software:-The collection of programs that makes computer worked is called software☆Computer needs software to instruct tge computer hardware what to do and how to do .Example(windows 7,windows 10,Microsoft paint etc.)
Answer:
x = int(input("What grade are you in? "))
if(x == 9):
print("Freshman")
elif(x == 10):
print("Sophomore")
elif(x == 11):
print("Junior")
elif(x == 12):
print("Senior")
else:
print("Not in High School")
Explanation:
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");
}
}