Answer:
confidentiality, integrity, availability
Explanation:
Confidentiality: Data and information assets must be confined to people who have authorized access and not disclosed to others
Integrity: Keeping the data intact, complete and accurate, and IT systems operational
Availability: An objective indicating that information or system is at disposal of authorized users when needed.
A - they all use microprocessors to compute and store data.
In a problem-solving process occurring inside a group, (C) develop creative solutions would be where the members combine and elaborate on ideas.
Brainstorming would be a prominent feature during this process since group members would be encouraged to state her or his opinion and solutions about the problem that the group needs to solve.
names = ["Kevin", "Joe", "Thor", "Adam", "Zoe"]
names.sort()
for x in names:
if x == "Thor":
break
else:
print(x)
I made up my own names for the sake of testing my code. I wrote my code in python 3.8. I hope this helps.