<span>Consider
the cement used for the foundation; the bricks and timber used for the
walls; and the shingles used for the roof. All of these are __________
in making the house.
A. Elements</span>
Answer:
false
Explanation:
-exec option is not mandatory for the find command.
find will still list out the identified files even in the absence of -exec option.
For example:
find . -name test -print
will print out files with the name 'test' in the current directory. Note that there is no exec option in this example.
Same holds true for find with no additional options at all.
For example:
find .
will list out all files in the current directory.
I believe it is C, I'm so sorry if im incorrect.
Answer: Doxing
Explanation: Doxing which is also referred as doxxing is defined as the revealing or publishing of the private records or information to the public.It is considered as the illegal practice which is base on the the internet service.The publicizing of the private data or confidential information is punishable offence.
Other options are incorrect because filtering is the elimination of the not required content, spamming is the activity of sending undesired bulk messages and hacking is the attacking of the system using false means to corrupt and steal data.Thus the correct option is doxing.
Answer:
public static boolean isReverse(int [ ]a, int [ ]b ){
for (int i=0;i<a.length;i++)
{
if(!(a[i] == b[a.length-i-1]))
return false;
}
return true;
}
Explanation:
Using a for loop, we go through the elements of the first array. The if comapres and checks if any of the values are not the same as the appropriate value on the other array, if it is so, then it is not a reverse, and we return false. else we return true.