iOS App Developement
iOS App Developement

IOS is an iPhone operating system that lies between the user and the physical devices. Erginous Technologies is the best company in Chandigarh and Mohali provides 6 weeks/months of industrial training.IOS is different from most other operating syste

How to start and stop services and broadcast in Android
How to start and stop services and broadcast in Android

.In this article, I am going to show you how to start services and broadcast them through Intent class. Here, there is one single interface and three buttons named startService stopService and broadcast.

Inheritance in PHP
Inheritance in PHP

Inheritance is the one of the most important concept in object oriented programming. Inheritance is used to share properties and method between the related classes.

Nested Classes in Java: More with Inner Classes
Nested Classes in Java: More with Inner Classes

If an inner class is declared with a public access modifier, it can be instantiated from outside the scope of its enclosing class.

Nested Classes in Java: Classifications of Nested Classes
Nested Classes in Java: Classifications of Nested Classes

To create a static nested class, we use the static keyword in front of the class declaration, the same way we declare a static field or a method within the enclosing class.

Interfaces in Java: Implementing Multiple Interfaces
Interfaces in Java: Implementing Multiple Interfaces

In the previous post, we created a standard interface to get the fuel efficiency of a car. A car has many such standard functions that could be defined in terms of interfaces.

Interfaces in Java: Extending Interfaces
Interfaces in Java: Extending Interfaces

It is possible to extend an existing interface. The purpose behind doing so is to add more declarations, both constants and methods, to an existing interface.

Interfaces in Java: Real life Example
Interfaces in Java: Real life Example

Suppose we are asked to develop communication software such as an FTP (File Transfer Protocol) or Telnet program that uses a modem.

Interface in C#
Interface in C#

Interfaces define properties, methods, and events, which are the members of the interface. Interfaces contain only the declaration of the members. It is the responsibility of the deriving class to define the members.