Write an expression that will print "in high school" if the value of user_grade is between 9 and 12 (inclusive).
1 answer:
Answer:
C#
if(user_grade >=9 && user_grade <=12)
{
Console.WriteLine("In Highschool");
}
Python
if user_grade >= 9 & user_grade <= 12:
print("In Highschool")
Java
if(user_grade >=9 && user_grade <=12)
{
System.println("In Highschool");
}
Explanation:
You might be interested in
Answer:
screen - soft cloth
keyboard - paintbrush
You should change the name of the function
Answer:
True
Explanation:
As employees might be accessing business/client data, security of data access is a topmost priority.
When entering a function or formula in a cell, which of the first character you must type =