Consider the following loop:
MOV CX, 8000H
L1 : DEC CX
JNZ L1
The processor is running at 14.7456/3 MHz and DEC CX requires 2 clock cycles and JNZ requires 16 clock cycles. The total time taken is nearly
A. 0.01 s
B. 0.12 s
C. 3.66 s
D. 4.19 s
Answer: Option B
Join The Discussion