Answer:
The correct code for this question:
g=float(input("Enter your English test grade:")) #take input from user.
#check conditions
if (g>=100 and g<=90):
print ("A")
#g greater then equal to 100 and less then equal to 90.
if (g>=89 and g<=80):
print("B")
#g greater then equal to 89 and less then equal to 80.
if (g>=79 and g<=70):
print("C")
#g greater then equal to 79 and less then equal to 70.
if (g>=69 and g<=65):
print("D")
#g greater then equal to 69 and less then equal to 69.
if(g<=64):
print("F")
#g less then equal to 64.
else:
print ("Not a grade")
#not a grade or fail.
Explanation:
In this program, we use to take a value from the user and check the value from the various conditions. To check all the condition we use if-else statement and AND operator that check to the range to together.
If -else is a conditional operator. In that, If block is used to check the true part and else part takes false value, and AND is a logical operator that check the two range together
Answer:
The answer to your question is to click on the button with the square on the window options ribbon.
Answer:
C: Security
Explanation:
Communications and information systems principles need to be, among other things, secure. They need to be able to protect sensitive information from those who intentionally not need to know. Some incident information like voice, networks, and data, are very sensitive and thus, should be secure to the right levels and should comply with privacy laws and data protection.
The best description of a computer virus is. Someone first starts out making a malicious program, then can send it to a unexpected user. After that, when the user opens the malicious program, it can do negative things on the target. The virus first starts out in the system32, then infects a random file type for example, exe files, or dlls etc. Then random errors can pop up on the computer saying "YOUR COMPUTER IS UNDER RISK! CALL THIS NUMBER NOW! 555-555-5555" and the options of the error, can direct you to a website, that can give you another virus. To get rid of a virus, you have to ignore the popups that comes onto your computer, and get a strong antivirus like avast, or avg. Then let it scan the system. After when the scan is done, it will show up the virus, and it will give you options "to delete virus or ignore it" you would hit delete. I hope this answer helped you. Let me know if you have any more questions! Thanks!