Both Java and C++ support object oriented programming, yet there are
differences between them. To begin with, Java is a pure object oriented
programming language; therefore, everything is an object in Java (single
root hierarchy as everything gets derived from java.lang.Object).
On the contrary, in C++ there is no such root hierarchy. C++ supports
both procedural and object oriented programming; therefore, it is called
a hybrid language.
Following...
This is default featured slide 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Wednesday, 29 June 2016
Compiler VS Interpreter

Learn the main differences between compiler and interpreter. This article tells you how source code converts into machine code and bytecode. Both compiler and interpreter take a different approach for this conversion.
“What is the difference between compiler and interpreter?”, this used to be one of the often asked question during my computer science courses. If you’re...
Tuesday, 28 June 2016
C VS C++ Programming Languages

Let’s learn the major differences between C and C++ programming languages. C++ offers excellent object orientation programming (OOP) paradigm. Nevertheless, C is still the most widely used in software development.
This is one of the most asked question in the Computer Science courses. If you have done a computer science, information technology or related courses, chances...