answersLogoWhite

0

Is the script mode is compiler or not?

Updated: 8/18/2019
User Avatar

Wiki User

14y ago

Best Answer

'The script mode' is not compiler.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is the script mode is compiler or not?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

It is possible to build a C compiler on top of a C compiler?

It is possible to build a C compiler on top of a C compiler. From the directory, run the shell script.


Does Java Script use the same compiler as Java?

No


Is there matlab compiler in matlab?

Matlab comes with a free C compiler. It also has a script compiler in some versions. In addition you can use many commercial compilers if you have one. See (link moved to link section)


How do you get a roblox script?

Go to Build or Edit mode, open up Studio Mode (Unless on Edit) and open Model Sections go to free models and take a script that you want!!!! (Making your own script from scratch is different.)


What is the Difference between c and shell program execution?

The shell interprets the script, while the C-compiler generates a binary executable.


Why is a compiler a necessary part of a computer system?

A compiler isn't technically part of the computer. A compiler takes the source code of a program and compiles it into a usable program. However, without a compiler, there will be very few programs, and thus computers won't be much use.


What is the meaning of code has no effect in function main in c language?

When the compiler says "code has no effect", it is saying that it does not matter if the code is executed or not - the end result will be the same. The compiler, if in optimizing mode, can and should delete the code. An example of code that has no effect is a = a;


How many types of compiler naming in list?

cross compiler . hybird compiler . post compiler. ideal compiler. intelligence compiler.


How can you run a script on your place on roblox?

To enter a script on Roblox make sure the tools are displayed and then click Insert and select Object. Then, select "Script" from the window that pops up and click okay. Finally, double click on the script object that appears in the explorer window and enter your script.


Difference between debug mode and release mode?

In debug mode, many of the compiler optimizations are turned off which allow the generated executable match up with the code. This allows breakpoints to be set accurately and allows a programmer to step through the code one line at a time. Debugging information is also generated help the debugger figure out where it is in the source code. In release mode, most of the compiler's optimizations are turned on. Chunks of your code could be completely deleted, removed, or rewritten. The resulting executable will most likely not match up with your written code. However, normally release mode will run faster then debug mode due to the optimizations.


What is DML Compiler?

What is difference between Compiler and DML Compiler


Does compiler runs on processor?

Acceptable compiler mode and processor architecture combinationsYou can use the -q32, -q64, -qarch, and -qtune compiler options to optimize the output of the compiler to suit: the broadest possible selection of target processors,a range of processors within a given processor architecture family,a single specific processor.Generally speaking, the options do the following:-q32 selects 32-bit execution mode.-q64 selects 64-bit execution mode.-qarch selects the general family processor architecture for which instruction code should be generated. Certain -qarch settings produce code that will run only on systems that support all of the instructions generated by the compiler in response to a chosen -qarch setting.-qtune selects the specific processor for which compiler output is optimized. Some -qtune settings can also be specified as -qarch options, in which case they do not also need to be specified as a -qtune option. The -qtuneoption influences only the performance of the code when running on a particular system but does not determine where the code will run.