answersLogoWhite

0


Best Answer

No, it is just the opposite assembly language is the lowest level of programming language.
A high level language uses one command to do complicated things such as placing buttons on the screen or triggering events when you click the mouse. Low level programming like assembly programming takes many lines of code to do even the most simple things such as putting text on the screen.

Low level programming gives the programmer more fine machine specific control, however with machine specific control you loose the ability to run your programs on different computers. The best bet for programming is to use a hybrid language such as C++ or Basic. They have the ability to use low level programming, but with the use of library extensions you can also use high level code.

Hopefully this is helpful to you. :)

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: The machine language and assembly language for each CPU architecture are the highest-level programming languages?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What programming languages are operating systems written in?

C and Assembly.


What programming languages does Linux support?

Linux supports virtually all programming languages, both compiled and interpreted, commonplace and esoteric. It would be impossible to list all of them, but a comprehensive list can be found below:Compiled languagesCC++C# (through the Mono and DotGNU projects)Assembly (multiple CPUs)Objective-CFortranPascalDHaskellInterpreted languagesBashBasic (several dialects)MATLABPerlPHPPythonRubySmalltalk


What are the five high level programming language?

1.First Generation Programming LanguageFirst generation of programming language refers to machine language. Machine language is lower level language which uses object code (some times also known as machine code). Object code is the combination of binary digits. These languages directly talk to hardware.2.Second Generation Programming LanguageSecond generation of languages is also low level language which is known as assembly language. Assembly languages are the interface between Machine level languages and High level languages.3.Third Generation Programming LanguageThird Generation programming languages are High level Programming languages like JAVA & C.4.Fourth Generation Programming LanguageThis is the set of current generation programming languages. These languages are similar or closer to human languages.General characteristics of 4GL are:i.Closer to human languagesii.Portableiii.Database supportiveiv.simple and requires less effort than 3GLv.Non proceduralDifferent types of 4 GL are:a. Query Generatorb. Report generatorc. Form Generatord. Application Generatore. GUI Generatorf. Relational Database Manager5.Fifth Generation Programming LanguageLanguages used for writing programs for Artificial Intelligence, Neural Network, Plasma Computing etc. come under 5GL. This is the future of programming language.


What is the difference between high level and low level programming?

High level languages are easier for humans to read and program in. They are usually machine independent, and most have a wide variety of programming libraries available for common functions. Low level languages are usually machine specific, such as assembly languages. They lack programming libraries.


What are the drawbacks of assembly level language?

The assembly language does not support object oriented program so they change to c and c++ the c++ will support object oriented program this are the demerits of assembly language.


Which translator translate low level language 1010111 to machines language?

Only assembly languages are generally considered low-level programming languages, so one could argue that there is only one low-level language. However, there are as many assembly languages as there are processor models or families, as each processor family implements its own set of machine code instructions. Different manufacturers not only invent different mnemonics for similar machine code operations to suit conventions and hardware architecture (e.g. MOVE vs LOAD/SAVE), but also support different notations. Therefore, conceptually, the assembly language is the only low level programming language. However, the standpoint of view of learning the language, or from that of tools to support the language, there are numerous assembly languages, thus numerous low-level languages.


What are the example of low level programing language?

The "machine language" and "assembly language" for each CPU architecture are the lowest-level programming languages. The "Forth language" and the "C programming language" are perhaps the most popular non-CPU-specific low-level programming languages. They were once considered high-level programming languages, and certainly they are at a higher level than assembly language, but now they are considered low-level programming languages when compared to the much higher-level languages available today (Python, Java, C++, etc). Low-level programming languages provide little or no abstraction from the CPU's instruction set architecture; typically they interact with the hardware directly.


What are high level programming languages how they differ from assembly languages?

High-level languages are easy to read and write. They are not machine dependent and portable from one computer to another. Assembly languages are machine dependent, easier to read than machine code but it's still not easy to read, and the assembler program translates the assembler program straight into machine code.


Correct sequence of programming languages from the most primitive to the most complex and powerful is?

Assembly C Fortran Python Ruby Java C++ LISP Haskell


What are examples of Object Oriented programming language?

Machine code, assembly language and C are all non-object oriented programming languages. Fortran, COBOL, Pascal and BASIC were originally non-object oriented languages but there are now object-oriented variants of these languages. C++, C# and Java were all designed with object-oriented programming in mind from the outset.


What are necessary condition for programming language to be considered as high level language?

It mustn't be Assembly (or machine code). Unlike low-level languages, high-level programming languages may use natural language elements (easy syntax), be more user-friendly, have simple keywords, and other concepts that deem it easier to utilize than low-level languages.


Is assembly language a platform specific language?

Certainly not, typical Assembly languages are entirely platform-specific. Some modern Assembly languages, however, are platform independent. Those languages apply not to a particular physical processor or family of processors, but apply to a virtual processor. MSIL, the Microsoft intermediate language, which is at the very core of the .NET system, is such an assembly language.