answersLogoWhite

0

What programming language produces exe extensions?

Updated: 12/11/2022
User Avatar

Bjseo1986

Lvl 1
15y ago

Best Answer

C Sharp (C#)

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What programming language produces exe extensions?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you make exe file of visual basic project?

Whenever you save a project it automatically saves a .exe of it. Go to My Documents -> Visual Studio 2005/2008 -> Projects -> "Choose your Project" -> Click on the folder with the name as your project -> obj -> Debug There should be an .exe file with the name of your project in it, or something like "Windows Application 1.exe". Double click on it.


Are there any programming language that is non-English?

Yes.And it's free it's called a Text Document,once you write a command you just need to save it as ie:.txt .exe .startup .dll etc.


What is the difference between a obj file and an exe file in C?

.obj is a simple data-format file that represents 3D geometry alone. .exe is an executable file that usually contains other resources which are sometimes used for a Graphical User Interface. Being simple, its a file to perform indicated tasks according to encoded instructions.


A high level language program is saved on disk as what?

An executable file (*.exe)


Can you get any software to convert .exe format to machine level language?

EXE is not a format it is a file extension. The formal format of an EXE file in Windows is the Program Executable (PE) format and, these days, will either be in the PE32 or PE32+ format, the latter denoting a 64-bit executable. However, EXE files are already encoded in native machine code. No conversion is required. If you want to render the code in a human readable form, use a disassembler. If you want to look at the raw code, use a hex editor.

Related questions

What are extensions for an executable program?

.exe


What is the extension of the executable version of a c program other than exe?

In WinDos it is .exe, in Unix executables usually have no extensions.


What does file extensions mean?

These are usually system files .DLL stands for Dynamic Link Library. They are very similar to .exe file extensions and are normally on Microsoft operating systems. As with .exe's, .DLLs can contain code, data, and resources.


What extensions can be run from command prompt?

The shell will only execute files that end in a file extension of .exe, .bat, or .com


What is one of the possible file extensions for a web page is exe bat txt htm?

.htm


You use a very old DOS based program Mazak32.exe that you presume to have been written in Basic you would like to be able to open it and read its contents Can you do this and how?

You cannot read the contents of an EXE file (unless you are a computer, of course). There are some software programs, however, that can "reverse-engineer" software. That is, they can take the EXE and convert it back to the programming language it was created in.


What is a programming?

Programming is giving a computer instructions with a programming language such as Python, C#, BASIC, FORTRAN, COBOL, etc. and saving the code into a text document (.txt) or a file with a language specific extension like .py(Python) .cpp(C++), .com(Assembly language (communicating directly with the computers processor)) ,.bas(BASIC) that the computer CANNOT understand, however using an interpreter runs the code without creating an object file(.exe). Compiling that code with a compiler turns that language syntax into machine code (0's and 1's, or in the world of Microsoft, .exe, short for executable) which the computer understands and WILL RUN.Programming looks like:C++ (infamous for a reason :P):#include //


How do you make exe file of visual basic project?

Whenever you save a project it automatically saves a .exe of it. Go to My Documents -> Visual Studio 2005/2008 -> Projects -> "Choose your Project" -> Click on the folder with the name as your project -> obj -> Debug There should be an .exe file with the name of your project in it, or something like "Windows Application 1.exe". Double click on it.


Are there any programming language that is non-English?

Yes.And it's free it's called a Text Document,once you write a command you just need to save it as ie:.txt .exe .startup .dll etc.


Which types of files can carry viruses?

Most viruses tend to be in in file that needs to be executed, favourites are type .exe or.scn file extensions.


What is the difference between a obj file and an exe file in C?

.obj is a simple data-format file that represents 3D geometry alone. .exe is an executable file that usually contains other resources which are sometimes used for a Graphical User Interface. Being simple, its a file to perform indicated tasks according to encoded instructions.


Where does PHP differ from other computer programs?

First, let's make this clear: PHP isn't a computer program; it's a programming language that has a JIT compiler (the program named php.exe), but when taking about php you usually refer to the language and not the compiler exe from the language. It differs from other "normal programs" (for example: firefox, audacity, your games, etc...) because it's a compiler: it inputs data (usually a text file) and output a exe, the program, that does what the input file told the exe to do. PHP is most used in web cgi and it was it's original purpose (dynamic server-side pages), but is enabled for tools such as Windows Scripting Tool.