• Articles

Java Iterable Interface With Program Examples

1 year ago

Iterable is a generic interface that represents elements which can be iterated. It resides in java.lang package and was introduced in 1.5 version. It contains… Read More

  • Articles

Collections in Java With Program Examples

1 year ago

A collection can be defined as a group of objects (elements) represented as a single entity. Collections in Java can be viewed as Collection Framework… Read More

  • Articles

How to Reverse a String in Java

2 years ago

The Java program reverses a string using different techniques and inbuilt methods which we'll be discussing in this article.   In Java, objects of a… Read More

  • Articles

Java Inheritance With Program Example

2 years ago

Inheritance is an essential feature of object-oriented programming as it enables us to create and manage a hierarchy of classes. With the help of inheritance,… Read More

  • Articles

Hierarchical Inheritance in Java with program Example

2 years ago

Hierarchical inheritance is a type of inheritance in which two or more classes inherit a single parent class. In this, multiple classes acquire properties of… Read More

  • Articles

Hybrid Inheritance in Java with Program Example

2 years ago

Hybrid inheritance is a type of inheritance in which two or more variations of inheritance are used. For instance, suppose, there are various classes namely… Read More

  • Articles

Difference Between HDLC And PPP Protocol in Tabular Form

2 years ago

In this article, we'll be discussing HDLC & PPP data link protocols and the differences between them. HDLC and PPP  protocols are the communication protocol… Read More

  • Articles

What are Java Jump Statements With Program Example

2 years ago

In Java, Jump Statements are control statements that shifts control from one part of the program to another part.  It is primarily used to escape… Read More

  • Articles

Difference between Statement Coverage and Branch Coverage in Tabular form

2 years ago

In software testing, code coverage is a measure that determines how much code in a program is successfully tested. It provides various methods such as… Read More

  • Articles

Distinguish between single and multiple fault assumption

2 years ago

Here's the difference between single and multiple fault assumption.   What is Boundary Value testing: It is a functional testing technique. In this, we choose… Read More