Answer:
biometrics
Explanation:
Voice and fingerprint <u>biometrics</u> can significantly improve the security of physical devices and provide stronger authentication for remote access or cloud services.
The answer is encryption
steganography would be hiding data, like in an image
digital forensics is the analysis done after an attack
and the last one is a security standard
Passwords, TPM, and Drive Encryption.
Hope this helps. :)
Answer: wiriting it and printing it
Explanation: duh
Answer:
def fizzbuzz (num):
for item in range(num):
if item % 2 == 0 and item % 3 == 0:
print("fizzbuzz")
elif item % 3 == 0:
print("buzz")
elif item % 2 == 0:
print("fizz")
else:
print (item)
fizzbuzz(20)
Explanation:
Using Python programming Language
Use a for loop to iterate from 0 up to the number using the range function
Within the for loop use the modulo (%) operator to determine divisibility by 2 and 3 and print the required output
see attached program output screen.