Comparable vs Comparator

One of the common interview question What are the differences between comparable and comparator and how to sort collections using these interfaces ? What are the differences between... read more ?

10 Interesting Core Java Interview Coding Questions and Answers

1. What is the output of following program? package com.instanceofjava;   public class B{     B b= new B();    public int show(){       return (true... read more ?

Group Discussion on Java Topic

Hi Friends We are planning to conduct a group discussion on a topic every week So interested candidates can join us based on everybody convenience time we will... read more ?

Java Interview programs on Strings

1.Reverse a String Without using String API? package com.instaceofjava;   public class ReverseString {   public static void main(String[] args) {   String str="Hello world"; String revstring="";  ... read more ?

Top 16 Java Inheritance Interview questions for freshers and experienced

(adsbygoogle = window.adsbygoogle || []).push({}); 1.what is inheritance? inheritance is one of the oops concepts in java.inheritance is concept of  getting properties of one class object to another... read more ?

Static methods in java example

A method which has static keyword in its definition is called static method. static void print(){   } (adsbygoogle = window.adsbygoogle || []).push({}); JVM will not execute static... read more ?

Select Menu