a) Write down a computer program which could be utilized to track, by lab, which user is logged onto which computer. For example, if user 49193 is logged into station 2 in lab 3 and user 99577 is logged into station 1 of lab 4.
b) Write down a program which utilized a loop to determine the first seven values of Fibonacci number sequence explained by the following formula : Fib(1)=1, Fib(2)=1, Fib(n)=Fib(n-1) + Fib(n-2). Place each value within the EAX register and show it with the call DumpRegs statement within the loop