Programming Fundamentals


PROGRAMMING FUNDAMENTALS



 

Computer :
           an electronic device.
           list of introuctions & it gives respond to new introuctions.
           the function of save the data.
           It do input , process, output






            
what is compiler & interpreter
   it's also programming language      
        

Interpreter Compiler
Translate the statement line by line at a time

analyze time – less
execution time – slow


memory efficient because intermediate object code is geranated


the first error is met, in which case it
stop so debugging is easy.
Eg:
    python
    ruby
Scan the entire program & translate it


analyze time - more
executive time – fast


requires more memory because Generates intermediate object code


scanning the whole program then generate the error message so debugging is hard.
Eg:
    c
    c++






Algorithm :a process or set of rules to be followed in calculations or other problem-solving operations.


Comments