Skip to main content

What is machine language, assembly language, high level language?


Answer 

Machine Language: Machine language is basically only language which computer can understand. Machine code is represented inside the computer by a string of binary digits (bits) 0 and 1. The symbol 0 stands for the absent of electric pulse and 1 for the presence electric pulse.


Assembly Language: Assembly language was developed to overcome some of the inconveniences of machine language. This is another low level but a very important language in which operation codes and operands are given in the form of alphanumeric symbols instead of 0’s and 1’s.


High Level Language: High level computer language give formats close to English language and the purpose of developing high level language is to enable people to write programs easily and in their own native language environment (English). High-level language are basically symbolic language that use English words and/or mathematical symbols rather than mnemonic codes. Each instruction in the high level language is translated into machine language.  

Popular posts from this blog

Draw the basic organization of computer

Answer:                 The basic organization of computer__ Input Unit: ·          It accepts (or reads) instructions and data from outside. ·          It converts these instructions and data in computer acceptable form ·          It supplies the converted instructions and data to the computer system for further processing. Central Processing Unit (CPU): Control Unit: Control unit of a computer system manages and coordinates the operations of all other components of the computer system. Arithmetic Logic Unit(ALU): Arithmetic logic unit of a computer system is the place, where the actual executions of instruction, takes place during processing operation. Storage Unit: Primary Memory: It is volatile ( loses data on power dissipation). It is used to hold running program instruction, data, intermediate results, and results of ongoing processing of jobs. Secondary Memory: It i

Describe the four basic data types. How could we extend the range of values they represent?

Answer: The basic four data types are: Data Type Integer Type Character Type Floating Point Type Void Type signed int short int long int unsigned unsigned int unsigned short int unsigned long int char signed char unsigned char float double long double