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.
Answer:
What email are you talking about?
Answer:
True
Explanation:
As employees might be accessing business/client data, security of data access is a topmost priority.
Answer:
B) You use parentheses around the data values
Explanation:
It was C) on my end, but the answer is still the same :)
A. I think correct me if I’m wrong