answersLogoWhite

0

How do you write computer code?

Updated: 9/18/2023
User Avatar

Wiki User

12y ago

Best Answer

there is really only one way to write in computer code it is by using the law of benjabenja.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you write computer code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What was the first computer that bill gates and paul Allen tried to write software for what did they write?

1. They wrote for Altair. They wrote computer code.


How do you write a pseudo code for find the quadratic equation?

computer scince


American standard for information interchange ASCII?

ASCII is code in which computer programs are written . it is the computer machine language.if write a program in any computer language thaen it will be converted in this code.


What do you mean programming language?

A programming language is a symbolic language that a computer programmer uses to write computer program source code. Source code is non-executable code and must be translated into machine code. A computer can be programmed to perform this conversion and thus produce the required machine code.


What do you mean by programming language?

A programming language is a symbolic language that a computer programmer uses to write computer program source code. Source code is non-executable code and must be translated into machine code. A computer can be programmed to perform this conversion and thus produce the required machine code.


What can a computer read but not over write?

The computer can read compiled code and not overwrite it automatically.


Can you put codes on action replay without a computer?

you do not have to just get codes with the ds cable. all you have to do is get a code off the internet and go to add new code in your action replay write the name of the code and go to next and write the code in you do not have to just get codes with the ds cable. all you have to do is get a code off the internet and go to add new code in your action replay write the name of the code and go to next and write the code in you stink not hope this helps you


What is the code you have to write in the computer in poptropica?

password 1- laser password 2-hair password 3-removal


What code system does a computer uses?

the code system a computer uses is eletricity the code system a computer uses is eletricity the code system a computer uses is eletricity the code system a computer uses is eletricity


What is the purpose of the systems development life cycle in computer programming?

The purpose of systems development life cycles in computer programming is to write code to solve a problem. These cycles are essential in the maintaining of computer information.


How do you use codes?

To write secret letters if you are a spy. To write computer programs. To deal with character sets (ASCII etc) To know how to behave and dress (social and dress code)


What does write once run anywhere means for Java?

This phrase describes Java's platform independence. You can write a piece of code on a Windows machine and run it (without making any code changes) on a Mac, Linux, or any other Java-supported platform.You write the code once and can run it anywhere.That means that if u write a program in JAVA, then u may run it on any computer which facility is not available in most of the languages.Then how does JAVA do this?to understand this, you need to understand how a compiler/interpreter converts a code to an executable file.When u specify int x; in C/C++,it creates a memory allocation on your RAM depending upon the processor you have in your computer(32 bt or 64 bit or 16 bit(obsolete)).but what if your computer has a Intel Pentium (32 bit) and my computer has Intel Core 2 Duo(64 bit)?the Code fails to execute on my computer if You have created the code in your computer and vice-versa.But JAVA codes never face these problems as it makes a byte-codebefore it makes an executable file.And this byte-code checks for the processor of your computer first and accordingly sets int x which is most compatible on your Computer.