interpreted vs compiled..
| interpreted | compiled |
| it runs and execute program line by line | the program is directly converted into machine code then processor can execute |
| slower | faster |
| python,PHP,Ruby etc are interpreted languages | rust,c,c++,etc are some are the compiled languages |
| kept simple | more complex |
| debugging can be done easily | gets more complicated while debugging |
| no intermediate object code is generated | generates intermediate object code |
| memory efficient | require more memory |
No comments:
Post a Comment