answersLogoWhite

0

we can say c,c++ also.. but not sure..

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Engineering

What Programming language is one step above machine language?

I guess you're trying to refer to Assembly language.


What is C language what does it do?

C Language is First Step of Programming Language, Help for C Language you are show the correct answer


What are the functions of POP?

POP is Procedural Oriented Programming, this is an approach in which a problem is solved by breaking it into step by step phases of a full procedure.C is a Programming Language is based on this approach.


What is the relationship between high level language code and low level language code?

All types of programming languages have one property in common: all languages, ultimately and in some manner, lead to machine instructions upon which the processor operates.Some higher programming languages, especially those of a traditional design such as the C programming language, might generate code in a low level language (i.e. assembly language) as an intermediate step during compilation. However, most modern designs do not implement or expose this as an explicit step, and transcoding of higher to lower level languages is certainly not required.The fact that all programming languages lead to executed machine code, however, does not mean that all language lead to a translation which results in executable code; interpreted languages, which include popular modern languages such as Java and the .NET family of languages, will generally execute machine code which interprets the language instructions, while compiled languages (which includes most forms of C) generally generate directly executable machine code.


What is the purpose of a procedural programming?

A procedural language is a programming language in which everything is processed in the order it appears to the computer. A computer programming language that follows, in order, a set of commands. In contrast, an object-oriented language is a language in which everything is processed depending on what happens in the program -- user input, errors, or other events. PHP is both a procedural and object-oriented language, depending on the way it is used

Related Questions

What Programming language is one step above machine language?

I guess you're trying to refer to Assembly language.


Difference assembly language and machine language?

Machine language refers to pure code (object code) in basic machine format (zeros and ones). Assembler is one step above this type of code and requires compilation before it is of any use to the computer.


Why c is called sequential programming language?

because c is step by step process


What is C language what does it do?

C Language is First Step of Programming Language, Help for C Language you are show the correct answer


What are the functions of POP?

POP is Procedural Oriented Programming, this is an approach in which a problem is solved by breaking it into step by step phases of a full procedure.C is a Programming Language is based on this approach.


What contains specific rules and words that express the logical step of an algorithm?

programming language


What is the relationship between high level language code and low level language code?

All types of programming languages have one property in common: all languages, ultimately and in some manner, lead to machine instructions upon which the processor operates.Some higher programming languages, especially those of a traditional design such as the C programming language, might generate code in a low level language (i.e. assembly language) as an intermediate step during compilation. However, most modern designs do not implement or expose this as an explicit step, and transcoding of higher to lower level languages is certainly not required.The fact that all programming languages lead to executed machine code, however, does not mean that all language lead to a translation which results in executable code; interpreted languages, which include popular modern languages such as Java and the .NET family of languages, will generally execute machine code which interprets the language instructions, while compiled languages (which includes most forms of C) generally generate directly executable machine code.


What is the purpose of a procedural programming?

A procedural language is a programming language in which everything is processed in the order it appears to the computer. A computer programming language that follows, in order, a set of commands. In contrast, an object-oriented language is a language in which everything is processed depending on what happens in the program -- user input, errors, or other events. PHP is both a procedural and object-oriented language, depending on the way it is used


What are the differences between program and program language?

Programming [verb] is a process done by software engineers or computer programmers consisting of the following steps: customer requirements analysis, software design, coding the design using a programming language, testing and debugging the program parts, program integration, testing and debugging the complete program, and customer acceptance testing. Any bugs found during the two testing steps of the programming process will have to be fixed in the code written in the programming language and all necessary testing steps repeated.A programming language [noun] (you wrote program language) is a human readable language used by software engineers or computer programmers during the coding step of the programming process. The code written in the programming language is then converted by a translator program (e.g. compiler, assembler) to machine code that the target computer can "understand" and run.


What is the difference between program and programming as used in computer programming?

The difference between a program and programming is programming is the actual activity of writing computer code in any of the various computer languages available, the end result of which is a program. The program can then be ran by the computer and perform the task the programmer told it to do.


What is language translation in programming language?

This is usually the first stage in compilation. The source code is read and checked for syntax and usability then passed to the compile stage to be converted to object (or machine) code that the computer can understand.Translator translates program written in one programming language into (equivalent) program written in another language. For example, Java to C# translator would translate Java program into (equivalent) C# program. This is similar to as if you would translate some text in English into Spanish or vice versa.If target language is lower level language like assembly language, machine language, or pseudocode, translator is called compiler. For example, some C++ compiler could compile (translate) program in C++ into machine code.


How are algorithms expressed in computer programming?

Algorithms in computer programming are expressed as a set of step-by-step instructions that outline the process for solving a specific problem or performing a task. These instructions are written using a programming language, which provides the syntax and structure needed for the computer to understand and execute the algorithm.