TAG

Java

How to reverse a list in Java [4 Different Methods]

We can reverse a list in Java using four different ways i.e. Using add and remove method, Using recursion, Using reverse method of Collections, Using …

By admin · 5 min read · Java Examples

Java XOR (^) Operator Explained [Practical Examples]

In this article we will discuss the Java xor (^) operator, this logical operator is used in many conditional statements, it is also used as a bitwise operator …

By azkaiftikhar · 7 min read · JAVA