Java List Interface

List interface in java is ordered collection so it can store elements in sequence. List interface is sub interface and it extends to Collection interface. List interface can hold duplicate elements so you can insert duplicate elements too. You can access elements from list by integer index. Collection framework has many interfaces in java and list … Read more

Mobile Application Testing (Andorid)

Now a days the market of mobile application is increasing rapidly. Every small or large organization, small or large business man want their own android,iPhone application. Peoples are using application for full filling their needs. There are lot of mobile application are available for user. From shopping to paying bills user now a days uses … Read more

Java Collection Interface

Collection is an interface in java. Collection interface extends Iterable interface. In hierarchy, Collection interface is root of List, Queue and Set interfaces. It represents unit of its elements. i.e. group of objects. Some collections do not allow duplicate elements but some allows duplicate elements. Collection interface is base on which collection framework is built. … Read more