Answer: This means that even though we believe the information is coming from a trusted source, it could still contract a virus due to someone else hacking it or the original sending not being aware of the virus.
Explanation: Just because information comes from a trusted/friendly source does not mean the information is clear of potential threats. Viruses are able to hide in information and the sending may not be aware that the virus is hiding in the information.
;) https://quizlet.com/7016715/cyber-security-flash-cards/ go check the link
Answer:
Following are the correct code to this question:
phrase = "abcdefgh"#defining a variable phrase that holds a string value
print(phrase[3:6])#use print method for slicing and print its value
Output:
def
Explanation:
In the above code, a variable "phrase" is defined that holds a string value, and use a print method, inside the method, the variable is used as a list and use slicing.
It is a characteristic that enables you to access the series parts like strings, tuples, and lists. It also uses for modifying or removing objects in series, in the above slicing it starts from 3 and ends when it equal to the 6th letter, that's why it will print "def".