Question 1 A ripple counter is a (n): A Synchronous Counter B Asynchronous counter C Parallel counter D None of the above Digital-Logic-DesignSequential-Circuits Correct Answer: B
Question 8 Consider the following recursive function: function fib (1:integer);integer; begin if (n=0) or (n=1) then fib:=1 else fib:=fib(n-1) + fib(n-2) end; The above function is […]