Answer:
Security technician
Explanation:
Security technicians are responsible for fixing, planning, and implementing the IT and computer security system of organisations by making sure the safety and security of the data and information of the clients as well as the employees that make daily use of the systems
Security technicians administer security access to the clients and employees of the organization and are responsible for being up to date with the latest IT security technology developments.
I would say D. But l may be incorrect. Al bots are not made for games, but are made for information.
Sorry l can't be much of help, but l do hope that I did help you out in a way.
Answer:
userInput = input("Please enter a string of words ")
userInput.split ()
for item in userInput.split ():
if item =="darn":
print("Censored")
break
else:
print(userInput)
Explanation:
Using Python programming language, the input function is used to receive the users input and save in a variable userInput
Then the .split method is used to convert the words into a list of words.
Using a for loop, the code checks for the word darn and prints censored if it exists else it prints the userInput
The answer most likely B NOT SURE )