Which of the following would be a correct statement with a call to the function findSmallest, which returns the index of the smallest element of an array. The function prototype is:

int findSmallest (int [], int, int);
and the array definition is:
int list[8];

a) cout << findSmallest (list, 0, 7);
b) findSmallest (list, 1, 8);
c) int min = findSmallest (list, 1, 8);
d) findSmallest (list, 0, 7);


a) cout << findSmallest (list, 0, 7);

Computer Science & Information Technology

You might also like to view...

What is package access?

What will be an ideal response?

Computer Science & Information Technology

Creating a new form using the Form Tool, all fields and all records from an existing table or query are used

Indicate whether the statement is true or false

Computer Science & Information Technology

To apply complex criteria to a single column, use a(n) ________

A) custom filter B) advanced filter C) AutoFilter D) extracting filter

Computer Science & Information Technology

What specific virtual hard disk editing option will allow you to change a dynamically expanding disk to a fixed-size disk?

A. replace B. edit C. modify D. convert

Computer Science & Information Technology