Consider the following code: .include “java_util-1.asm” .dat…

Consider the following code: .include “java_util-1.asm” .data   .text      li $t0, 5      looptop:          System_out_print(“\nHello World!”)       sub $t0, $t0, 1              bnez $t0,looptop To which of the following snippets of Java code would this code most closely map?