answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: When the .Net program is compiled the output of the compiler is not an executable file but a file contains a special type of code is called?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is executable code?

short answer: executable code is a program that is ready to be used write now. long answer: writing a computer program is generally a 2 part process (there are exceptions): 1) programmer writes the code 2) programmer runs his code through a special program called a Compiler the Compiler is responsible for taking code that a programmer can understand, and turning it into something that a computer can understand. executable code is (usually) code that has been compiled.


Class of statements usaually produces no executable code when compiled?

When compiled, comments produce no executable code. Rather, comments are intended to let other developers know what is happening in a program.


What is the relationship between compiler interpreter loader and linker?

Compiler - Translates High level language (C, C++ etc.) and generates Object code (machine readable but not directly executable)Interpreter - Same as compiler but do that interactively (simply saying line by line). Interpreted languages don't usually require a linker, and employ a loading process different from that of a compiled program: the interpreter itself is linked and loaded like a compiled program (and in all probability is a compiled program), but the program interpreted by the interpreter is typically loaded through interpreter-specific means.Linker - Connects the compiler generated object code with library code to generated independent executable (like in C, you dont write how printf() works, linker add the code for printf() function in your program)Loader - Load the machine readable codes in memory to be executed. This step typically includes relocating the code output by the linker to a specific memory location into which the program was being loaded.


What is code optimization phase?

Optimization compiler is a compiler that can minimize or maximize attributes of an executable computer program. It is most common to minimize the time that is taken to execute a program.


How program can be complied in c?

C programs can be compiled with a C compiler. Are you surprised?


How is a C program compiled?

With a compiler. Read the documentation for programming package for help on how to.


Can BASIC language can be written on notepad?

Sure, it can. I like to use a word processor or notepad to do search/replace, adjust indents, etc. and then to transfer to the compiler. Once compiled, the executable program cannot be edited effectively outside the Basic environment.


When does a program show a compiling error?

When a program contains a compiler error, the compiler will detect it, preventing the program from compiling. Compiler errors must be fixed before a program will compile successfully.


What are the main features of a compiler in C programming language?

A compiler is a comp. Program that transforms source code written in programming language into another comp. Language.the main reason to compile a program is to create an executable program...


Which produces faster program execution a compiler or pure interpreter?

A compiled program would execute faster than an interpreter running the same code step by step.


How can you turn a C plus plus program into a dot exe to run on a PC without a compiler?

To make C++ code into an executable program, you need a compiler. Compilation of a program doesn't have to be on the same computer as the one it's intended to be used on.


What is the use of programming?

The compiler converts source code (the stuff the programmer wrote and is human readable) and converts it to machine code that the computers CPU can understand. The conversion is used to make an executable program. The compiler can also make libraries but libraries are not executable by them selves.