answersLogoWhite

0


Best Answer

I wouldn't think so, since you can't really "fluently speak binary"

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is binary code an example of a high level language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

What is computer language and what are its uses?

A computer Language is the code we use to make computer understand what we want it to do. Its an Instruction set given to computer to perform some task. A computer does understands only one langue (native one) which is Binary 0 or 1 (or simply say ON or OFF) but since human are barely able to understand this language so they use interpreter that translate the code written in a language close to human being and converts it to machine code to it to understand and execute. Reverse Process is done to get the results back to humans. Such Languages are: Native: Binary (0,1) Low Level: Assembly C Intermediate: C++ High Level: C#, VB, ASP, JAVA, Python, PHP, Pearl, JASON, JavaScript, HTML, CSS, F#, Ruby ..... etc.


'How does a C plus plus code execute on a computer system' like does the computer has a library or such that can understand C plus language and translate it into binary?

By execution time, the code has already been translated into binary ("compiled"). However, the program may still rely on outside libraries (.dlls for example) that have also been pre-compiled.


A compiler that translates a high level-language into another high-level language is called a source-to-source translator. What advantages are there to using C as a target language for a compiler?

C would be a good language if you wanted to then go on to improve the efficiency of the code perhaps by editing the translated code. I wouldn't call C a high language :)


Which part of the computer changes the human language into the computer language?

When a user types on a computer, you can see the words appearing on screen. How it works is a binary code is saved in change key on the keyboard, so if you press S = 01010011 and a small s = 01110011. Here is my name in binary coding = 0101001101101000011000010110111001100101. The motherboard will process this.


What translates the analog information into binary code so that the processor can understand what you want?

The programming language. Each programming language except for binary has a translator built in that translates into binary. Some programs also have their own creators built in and from there the program is translated and its pretty much an endless stream of translation until you get to the processor.

Related questions

What is binary language?

Binary is made up of 0's and 1's. Binary can also be called Machine Code. Binary is the 'language' that the computer understands.


Is gaming software for a fast paced action game that runs on a single computer a high or low level language?

The software that runs is neither--it is the binary or machine code. The binary code was generated from source code by an compiler or assembler. The source code can be written in a high or low level language or in a mixture. Most source code today is written in high-level language because it is easier to maintain and more portable. However, sometimes speed-critical sections of source code are written in low-level language such as assembly.


How assembly language communicate with the CPU of any computer devices?

Assembly language code is the lowest-level form of programming before Machine code (binary), and each command in Assembler code directly references binary commands which tell the CPU what to do.


What is the standard language for computer binary code called?

There is no standard language, this is why higher-level languages were invented - to provide a layer of abstraction. A program written in a high-level language such as C++ or Java will execute the same on a PC as it will on a Mac, despite the fact that they have different architectures and therefore the binary code will be different.


What is an example of a low-level language?

Machine code.


0's and 1s is Low-level programming language?

it is called binary code and this is the lowest level programming language you can track it by looking at a switch or a register in memory


How does a computer understand the Filipinos language?

It doesn't. The only language the computer understands is its own native machine code; binary language. We use that binary language to program the computer such that it can translate the high-level human languages that we can understand into the low-level languages that it can understand, and vice versa.


What is the example of low level language?

Machine Code, Assembly


Examples of machine language?

Machine code is the ONLY example of machine language. However, every machine architecture has its own version of machine code; it is the native language of the machine. If you want to examine machine code upon your own machine, use a hex editor. This will show you every byte of the code in hexadecimal form.


What is the lowest level language with instructions coded in binary notation?

Machine code. Writing machine code is known as "banging the metal". Assembler language makes producing machine code that much easier using a symbolic language, and is therefore low-level. All other languages are high-level and greatly simplify the production of machine code.


What are the example of low-level programming language?

It are machine code and Assembly.


Difference between all mll and hll?

HLL is what we humans use. Its full name is High Level Language. MLL is what machines use. Its full name is Machine Level Language. The difference is, HLL is our language (e.g English) and MLL is machines language (binary code) Binary code is 0s and 1s so "A" could be 010 in MLL. MLL is understood only by the computer and not humans