Posts

Showing posts from November 10, 2019

IPLC Theory Exam Question & Answers

Image
2 question answer are coming soon  :  1. Explain Machine level language with all its limitations. ANS) Machine Language : Machine Language is the only language that is directly understood by the computer. It does not needs any translator program.  When this sequence of codes is fed to the computer, it recognizes the codes and converts it in to electrical signals needed to run it. We also call it machine code and it is written as strings of 1's (one) and 0’s (zero). For example, a program instruction may look like this: 1011000111101 It is considered to the first generation language. It is efficient for the computer but very inefficient for programmers. It is not an easy language for programmer to learn because of its difficult to understand. It is also difficult to debug the program written in this language. The only advantage is that program of machine language run very fast because no translation program is required for the CPU. Disadvantag...