Category: Programming

19
Feb
2016

Some string functions

puts() in c i will implement. Main job of this function is to print a new line…

19
Jan
2016

Java Tut – Packages

Packages are used in Java in order to prevent naming conflicts,to control access, to make seraching/locating and…

19
Jan
2016

Java Tut – Interface

Interface is a collection of abstract methods.A class implements an interface, thereby inheriting the abstract method of…

19
Jan
2016

Java Tut – Aggregation/HAS-A relationship

code: class Operation{ int square(int n){ return n*n; } } class Circle{ Operation op;//aggregation double pi=3.14; double…

19
Jan
2016

Java Tut – Encapsulation

Encapsulation is one of the four fundamental OOP concepts.The other three are inheritance,polymorphism and abstraction. it is…

19
Jan
2016

Java Tut – Abstraction

In OOP abstraction is a process of hiding the implementation details from the use, only the functionality…