High Level Languages and Low Level Languages [2.1] Flashcards
What is a High Level Language?
A high-level language is a programming language designed to simplify computer programming. It is “high-level” since it is several steps removed from the actual code run on a computer’s processor.
What is a Low Level Language?
A low-level language is a programming language that provides little or no abstraction of programming concepts and is very close to writing actual machine instructions.
Which Level Language is faster to process.
Low Level Language, it only takes one processor clock cycles to execute a line where the High Level language takes multiple.
What are some examples of High Level Languages?
Python, Javascript, C++
What are some examples of Low Level Languages?
Machine Code, Assembly Language.
What are the differences between both of the languages?
High Level looks like structured English, where the low level is unreadable to humans. Low Level Languages are processor dependant, High Languages are not.