Tag Archive: object-oriented programming
April 14, 2017 6:03 am
Published by PrasannikaComputer programming is one of those disciplines that requires constant learning. Technology is advancing at a rapid rate, so much so that sometimes even the biggest experts find it challenging to keep up sometimes. Continual improvement is the only way...
Read More
January 18, 2017 4:20 am
Published by Mark TregoDepending on who you ask, JavaScript is either the best programming language you should learn, or the one language you should stay away from. Here’s the truth: No language is perfect and JavaScript has its flaws. But for the most...
Read More
January 29, 2016 2:47 pm
Published by PrasannikaIt may be 21 years old and counting, but the object-oriented programming language Java isn’t going away anytime soon. In 2015, Java was named the “Programming Language of the Year” on the TIOBE Index. Considering that it was up against...
Read More
November 12, 2015 9:59 am
Published by Gerard MillaresSince we have already discussed about inheritance and abstract classes in JAVA, there are no prizes for guessing that the next frontier of this series of blog posts is interface. Interface is very similar to the abstract classes with more...
Read More
November 10, 2015 8:06 am
Published by Gerard MillaresIn our last blog, we discussed about inheritance and how inheritance adds another dimension to the Object Oriented nature of JAVA. In this section, we will discuss another feature of JAVA programming that makes this language so popular and useful...
Read More
November 8, 2015 7:49 am
Published by Gerard MillaresWe have already discussed a few concepts of Object Oriented Programming that gives it an edge over the procedural languages. One of the most commonly used aspects of Object Oriented Programming is the inheritance of parent class by the child...
Read More
November 6, 2015 7:14 am
Published by Gerard MillaresConstructor is a concept that Object Oriented Programming has introduced in the world of computer programs; and the use of constructors often minimizes the complexity and the length of a particular code. Imagine giving value of the same variable again...
Read More
November 4, 2015 6:54 am
Published by Gerard MillaresObject Oriented Programming involves classes and objects and uses these two concepts to execute programs instead of relying solely on actions and logics. Object Oriented Programming or OOP; makes the job of a programmer easier and brings synchronization to various...
Read More