I believe the question is asking which of the options is true about a cyber community. In that case, only D is true, as a cyber community, such as facebook or instagram, gives you that ability. The rest of the options only apply to a physical community.
Answer:
Option E Components that interact to produce information
Explanation:
Information system is a system to collect, analyze and disseminate information. An information system consists of five components that work with each other to produce information:
- Computer hardware - physical machine that works with information
- Computer software - a set of computer instructions that tell computer hardware how to perform a task
- Telecommunications - components that connect a group of hardware as to establish a network. This usually includes WiFI technology.
- Databases and data warehouses - the place where the digital data are kept and retrieved.
- Human resources and procedures - human expertise that run the system by following some standard procedures.
Answer:
Script Kiddie
Explanation:
According to my research on Black Hat Hackers, I can say that based on the information provided within the question the term that best describes this type of user is called a Script Kiddie. This is known as a person who uses already created computer scripts to hack into computers since they do not have the skills to write the scripts themselves.
I hope this answered your question. If you have any more questions feel free to ask away at Brainly.
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.
Answer:
See the below the answer written in Matlab
Explanation:
function inches=feetToInches(feet)
prompt='enter the value of feet in digits';
feet=input(prompt)% ask for the value in feet that needs to be converted to inches
inches =feet*12; % converts feet to inches
x=['the value in inches is: ',num2str(inches)];
disp(x) %display the result of the convertion
end