Multiple choice technology databases

Which of the following will be a better compilation methodology for a Procedure that involves only looping structures.

  1. NATIVE

  2. INTERPRETTED

  3. BOTH

  4. NONE

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Native compilation provides better performance for procedures with looping structures because it compiles directly to machine code, eliminating interpretation overhead. Interpreted compilation translates line-by-line at runtime, which is slower for repeated loop iterations.