General discussion

  • Creator
    Topic
  • #2343592

    assembler,interpreter,compiler

    Locked

    by chaushim ·

    I would like to have short notes on the above and give the advantages of a Modular

All Comments

  • Author
    Replies
    • #3714728

      assembler,interpreter,compiler

      by ann777 ·

      In reply to assembler,interpreter,compiler

      you can find definitions of technical terms at:

      http://www.whatis.com

    • #3621473

      assembler,interpreter,compiler

      by realgem ·

      In reply to assembler,interpreter,compiler

      An assembler is a program that converts simple commands into machine code. The simple commands, written in an assembly language, are used in groups to perform more complicated tasks.

      An interpreter runs program code by converting it to machine code on the fly. You save some time in the front by avoiding the compiling and linking steps, but interpreters generally run slower because they have to convert the same code (in a loop, say) again and again. An example of a common interpreter is the one that executes .bat files.

      A compiler completely converts program code to machine code once. The computer user runs the machine code in the form of an executable command, ending in .exe say. Because the translation is complete before execution, compiled code is much faster.

    • #3566008

      assembler,interpreter,compiler

      by chaushim ·

      In reply to assembler,interpreter,compiler

      This question was auto closed due to inactivity

Viewing 2 reply threads