what is bubble sort?
In passes(going from the first element to the last element) the largest value “bubble” towards the end using pair comparisons and swapping.
what is merge sort?
Divide: split one big list into two smaller lists of similar size
Conquer: sort both sub-lists recursively (by repeating the algorithm)
Combine: merge both sorted sub-lists into one sorted list
what is insertion sort?
builds the final sorted array one item at a time
hexadecimal
split an byte into a nibble then use the numbers to make a letter or number in the 16-base language
how to convert from binary?
each number goes from 128,64,32,16,8,4,2,1 and add up all the ones