Consider the declaration

```
double a[10] = {1.2, 2.1, 3.3, 3.5, 4.5, 7.9, 5.4,
8.7, 9.9, 1.0};
Write a function named out_of_order that will test this array for the condition
a[0] <= a[1] <= a[2] <=. . .
```


```
int out_of_order(double array[], int size)
{
for(int i=0; <; size-1; i++)
if (array[i] > array[i+1])
return i+1;
return -1;
```

Computer Science & Information Technology

You might also like to view...

A _________ in an intermediary that provides connectivity and transport of cloud services from CP’s to cloud consumers.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Your computer is only as fast as its slowest component.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

What method of the String class would tell you the first position of a character in a String object?

What will be an ideal response?

Computer Science & Information Technology

The Web Safe Color Palette consists of ____ colors.

A. 64 B. 128 C. 216 D. 256

Computer Science & Information Technology