True because if you were to bold a text, you have presented that the following text is more important or exemplified.
Answer:
or tell ur teacher to add u in ur class
Explanation:
It needs an Operating System like a cable or something that will help it operate look for more and double check
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.