To print notes, first ____________________ the notes you want to print.

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

select

Computer Science & Information Technology

You might also like to view...

The ________ function rounds a number down toward zero to the number of digits indicated

Fill in the blank(s) with correct word

Computer Science & Information Technology

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

A. linear sort B. bubble sort C. insertion sort D. selection sort

Computer Science & Information Technology