top of page
Search
The Tech Platform
Feb 24, 2021
How to use the wait() and notify() methods in Java?
When should you use the wait() and notify method in Java is one of the many popular questions about the wait and notify methods from Java...
The Tech Platform
Feb 11, 2021
Encapsulation In Java
In the object-oriented world, we have pillars of programming. One of them is Encapsulation the other three are Inheritance, polymorphism,...
The Tech Platform
Feb 2, 2021
What is Variable and Method Hiding in Java?
If you are not careful in Java, you may inadvertently hide the methods and variables of the superclass. It is important to understand...
The Tech Platform
Feb 2, 2021
Difference between Abstraction and Encapsulation in Java
Java is an object-oriented programming language and it follows OOPs concepts. The OOPs concepts include classes, objects, polymorphism,...
The Tech Platform
Feb 1, 2021
Difference between a List and ArrayList Reference Variable in Java
Someone who is just starting with Java programming language often has doubt about how we are storing an ArrayList object in List...
The Tech Platform
Feb 1, 2021
java.util.Stream to Array and ArrayList in Java 8
It's relatively easy to convert a Stream to an array in Java 8 by using the toArray() method of java.util.Stream class. By using this...
The Tech Platform
Jan 22, 2021
Prototype Design Pattern with Java
In software design, Prototype Design Pattern is a creational pattern that allows us to create objects from existing objects, thus...
The Tech Platform
Jan 13, 2021
How to sort Object in Java - Comparator and Comparable Example
Java Object Sorting Example How do you sort a list of Objects in Java is one of the frequently asked coding questions in Java interviews...
The Tech Platform
Jan 13, 2021
How to convert ArrayList to String in Java - Spring Example
Some time we need to convert ArrayList to String in Java programming language in order to pass that String to stored procedure, any...
The Tech Platform
Jan 13, 2021
DOM vs SAX Parser in Java - XML Parsing in Java
DOM vs SAX parser in Java DOM and SAX parser are two most popular parser used in Java programming language to parse XML documents. DOM...
bottom of page