C | JAVA |
---|
1. 'C' was designed to be compiled. 2. 'C' is platform-dependent. 3. It does not use classes. 4. It does not implement the object-oriented model. 5.It does not employ encapsulation mechanism. 6. It does not employ inheritance mechanism. 7. It does not employ abstraction mechanism. 8. It does not employ polymorphism. 9. It does not employ exception handling mechanism. 10. All applications must have a main() method | 1. 'JAVA' was designed to be interpreted. 2. 'JAVA' is platform-independent. 3. It do use classes. 4. It implements the object-oriented model. 5. It employs encapsulation mechanism. 6. It employs inheritance mechanism. 7. It employs abstraction mechanism. 8. It employs polymorphism. 9. It employs exception handling mechanism. 10. Only stand alone applications must have a main() method. |