answersLogoWhite

0

What are the type of compiler?

User Avatar

Anonymous

10y ago
Updated: 7/4/2022

peace out yeah that's right!

User Avatar

Adele O'Hara

Lvl 10
3y ago

What else can I help you with?

Related Questions

What is a dictionary compiler called?

A program that compiles dictionaries is commonly known as a lexicographic compiler or a glossary compiler. This type of software helps to organize and format data into dictionary entries for various purposes.


How many types of compiler naming in list?

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


What type of software translates a programming language into machine language for one type of machine?

A compiler and/or an assembler.


When might you want the compiler to ignore type differences in an expression?

a compiler cannot "ignore" type differences, it only can silently "convert" the items into a common data type, before further processing. Such conversions require rules, how to make different types compatible


Which type of translater is used by GW BASIC either compiler or interpreter?

its an interpreter


Which is type casting operator in java?

It means to explicitly convert to a certain type.double a = 5.0;int b;b = (int) a;The (int) is the explicit typecast in this case, but any type can be used, including a user-defined type (i.e., a class name). If you omit it, the compiler will complain, because when you convert a double to an int, precision may be lost. If you include it, you override this compiler check - you basically tell the compiler that you know what you are doing.It means to explicitly convert to a certain type.double a = 5.0;int b;b = (int) a;The (int) is the explicit typecast in this case, but any type can be used, including a user-defined type (i.e., a class name). If you omit it, the compiler will complain, because when you convert a double to an int, precision may be lost. If you include it, you override this compiler check - you basically tell the compiler that you know what you are doing.It means to explicitly convert to a certain type.double a = 5.0;int b;b = (int) a;The (int) is the explicit typecast in this case, but any type can be used, including a user-defined type (i.e., a class name). If you omit it, the compiler will complain, because when you convert a double to an int, precision may be lost. If you include it, you override this compiler check - you basically tell the compiler that you know what you are doing.It means to explicitly convert to a certain type.double a = 5.0;int b;b = (int) a;The (int) is the explicit typecast in this case, but any type can be used, including a user-defined type (i.e., a class name). If you omit it, the compiler will complain, because when you convert a double to an int, precision may be lost. If you include it, you override this compiler check - you basically tell the compiler that you know what you are doing.


Why cant you can do all programs in one compiler?

Not all programs are written in the same programming language. Every compiler can translates only one type of language into object code.


What is DML Compiler?

What is difference between Compiler and DML Compiler


What are the difference between a compiler design and a compiler?

In Compiler there is no design word ,whereas in compiler design there is design word


Compiler construction would be used for what purpose?

Compiler construction is used for the purpose of developing programming languages and compilers. You can learn more about this at the Wikipedia. Once on the page, type "Compiler construction" into the search field at the top of the page and press enter to bring up the information.


How does the compiler interpret more than one definition of the same name?

The compiler disambiguates function overloads by their signatures. A function's signature is defined by its name and its formal parameters, but not the return type. As you probably know, function overloads cannot differ by return type alone, thus the return type does not form any part of the signature. The compiler determines which function to call based upon the arguments that are passed by the individual callers.


What type of error can not be detected by the compiler?

Most commonly this would be a logical error, such as coding an incorrect calculation. However, depending on the compiler and language, other errors may not be detected at compile time.