Question: 1- What is the logarithm base-2 of zero? of one?
A coworker is considering two algorithms, but does not know which does fewer operations.
Algorithm 1 does 3 times the logarithm base 8 of n operations: 3 log8(n)
Algorithm 2 does the logarithm base 2 of n operations: log2(n)
Problem: How would you advise your coworker on which algorithm to choose?
You have to satisfy the requirements specific in the instruction and show how you would advise your coworker?