answersLogoWhite

0


Best Answer

CODING

Implementation

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

CODING

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Translating an algorithm into a programming language is called what?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Translating an algorithm into a programming language is called?

Translating an algorithm into a programming language is called coding. A variable declaration tells the operating system to allocate storage space in RAM.


The process of translating a task into a series of commands that a computer will use to perform a task?

Multiply matrices


What is a computer program written in English language called?

Pseudocode. However, pseudocode is not a programming language as such. It is a language that a programmer uses specifically to convey the concept of a specific algorithm to other programmers. The language is such that any programmer can easily translate the algorithm into their preferred language. Furthermore, pseudocode does not have to be written in English, it can be written in any language. However, English is the most widely-spoken language within the programming community and is therefore the most prevalent language used in programming.


Translating design specifications into computer software is called?

Programming


What are the distinguishing features of the programming language called Short Code?

programming language called Short Code


What are the distinguishing features of the programming language called short code when was it invented?

what are the distinguishing features of the programming language called Short Code?


In programming data read by programming is called?

Pascal language is used to read the programming data.


Is Programming a language?

No, but of course there is a programmers' slang. And programming is done with so-called 'programming languages'.


Programming language for assemblers?

Is called Assembly.


What is adobe flash programming language called?

ActionScript


A set of Rules that define a programming language is called?

The rules of a language is called its syntax.


How to write algorithm in c program?

Algorithms are created using pseudocode, which is a combination of natural language (such as English) and commonly understood programming concepts. Pseudocode is a machine-independent language, but it is far too abstract for a machine to understand. It is intended for humans only. As programmers, our job is to translate these algorithms into a form the machine can process in order to produce the required machine-dependent code. For this we use programming languages, such as C, C++ and Java. The more abstract the programming language, the easier it is to convert an algorithm into working code. Of all the high-level programming languages, C has the least amount of abstraction, however we can make use of third party libraries to increase the amount of abstraction, or we can use the language itself to create our own abstractions.