Answer:
Option(B) i.e., social engineering is the correct option to the question.
Explanation:
The following option is correct because social engineering is the type of attack in which the criminals tricks the computer users to disclose the confidential data or information. Criminals or hackers use this trick because by this they can easily take advantage of your confidential information or corporate secrets.
Answer: library
Explanation:
A library refers to the collection of software routines that can be used by other software. Licensing terms for this type of software are important for programmers who use the software.
It is the collection of non-volatile resources that is used by computer programs, usually for the development of software.
Client server network as it has a powerful server which provides all the networks required on the network. Files are usually backed up regularly.
Greg is a Residential Adviser.
<em>I hope this helps!!!</em>
Answer:
public static ArrayList manyStrings(ArrayList<String> list, int n){
ArrayList<String> newList = new ArrayList<String>();
for (int i=0; i<list.size(); i++) {
for (int j=0; j<n; j++) {
newList.add(list.get(i));
}
}
return newList;
}
Explanation:
Create a method called manyStrings that takes two parameters, list and n
Create a new ArrayList that will hold new values
Create a nested for loop. The outer loop iterates through the list. The inner loop adds the elements, n of this element, to the newList.
When the loops are done, return the newList