Rate this product
Q 1) If we freeze one machine, copy all state (memory, register file, PC, flags register) to another machine, will both machines give the same result? What if the second machine has a different design, but implements the same ISA? What if the second machine has a different ISA?
Q 2) Consider the following recursive function foo foo(n) {
If n == 2Return 2
If n == 1Return 1
Return foo(n-1) + foo(n-2) }
Reviews
There are no reviews yet.