Answer:
Database
Explanation:
To store a variety of drugs electronically, along with displaying their purchase dates and prices, the kind of software that would be used is database.
Answer:
The attackers used the code injection
Explanation:
<em>Because, the HMTL5 allows data and code to be mixed together, making code injection attacks possible. </em>
That would be (A) because an IDS stands for Intrusion detection system which means that when there’s malicious activity or policy violations. Any malicious activity or violation is typically reported either to an administrator.
Answer: e) mkdir -p ~/Documents/papers
Explanation:
As the question says we want to create a directory called ~/Documents/papers, but we are not sure whether it exist or not so we would type the command for making directory starting with mkdir.
Here mkdir means make directory. Followed by mkdir we will use -p. Here p is used to create all the directories for getting us the directory we want and its advantage is that it would ignore all the errors if the directory already exist.
Followed by the name of the directory that we want to create.
So the desired answer for the given condition would be mkdir -p ~/Documents/papers