What type of algorithm is the following code?
i = 0while i < len(myList) - 1: minIndex = i j = i + 1 while j < len(myList): if myList[j] < myList[minIndex]: minIndex = j j += 1 if minIndex != i: swap(myList, minIndex, i) i += 1

A. binary search
B. bubble sort
C. sequential search
D. selection sort


Answer: D

Computer Science & Information Technology

You might also like to view...

Consider the classes below, declared in the same file:

``` class A { int a; public A() { a = 7; } } class B extends A { int b; public B() { b = 8; } } ``` Which of the statements below is false? a. Both variables a and b are instance variables. b. After the constructor for class B executes, the variable a will have the value 7. c. After the constructor for class B executes, the variable b will have the value 8. d. A reference of type A can be treated as a reference of type B.

Computer Science & Information Technology

The ____ indicates the variable's position in the array.

A. superscript B. subscript C. array identifier D. identifier

Computer Science & Information Technology

When you have added slides to a custom show in the Define Custom Show dialog box, how are the slides displayed?

A) Numbered based on their original slide number B) Numbered based on their position in the new show C) Listed by slide title only D) By original slide number and slide title

Computer Science & Information Technology

The My templates button is located on the File tab.

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

Computer Science & Information Technology