Q6.Marks: +2.0UGC NET Paper 2: Computer Science 11 March 2023
Machine Level Language is a/an
1.Assembly Language
2.Low Level language✓ Correct
3.High level Language
4.Translating Language
Solution
The correct answer is Low Level language
Key Points
Low-Level Language: Low-level languages are closely related to the hardware of a computer system. They operate and behave on the computer's hardware directly, making them more efficient but less portable. Machine language and assembly are both examples of low-level languages. Low-level languages are harder to read and write since they require detailed knowledge of the hardware's internal workings.
Assembly Language: This is a low-level programming language where there is a strong correspondence between its instructions and the architecture's machine code instructions. It's one step away from machine language which is directly interpreted into the hardware. Each assembly language is specific to a particular computer architecture.
High-Level Language: High-level languages are coding languages designed to be easy for humans to read, write, and maintain. Examples of high-level language include Python, Java, C++, and more. These languages do not require the programmer to understand the hardware's inner workings and are designed to be more user-friendly, abstracting away the complexities and details of the hardware.