Question: public static boolean mystery ( int [ ] nums ) { for ( int i = 1 ; i < nums.length; i + + )

public static boolean mystery(int[] nums)
{
for (int i =1; i < nums.length; i++)
{
if (nums[i]< nums[i -1])
{
return false;
}
}
return true;
}
Group of answer choices
Returns true if each element of the array is greater than the element after.
Returns false if each element of the array is greater than or equal to the element after.
Returns false if each element of the array is less than the element after.
Returns true if each element of the array is less than or equal to the element after.
Returns true if each element of the array is less than the element after.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!