About NewTechnoBuzz
Advertise
Contact Us
Showing posts with label Java. Show all posts
Showing posts with label Java. Show all posts

Wednesday, August 6, 2014

no image

How to convert number to words in java

This question was asked from in an interview ( Java interview questions ). But, the mode of asking the question was different. The inte... Read more »

Tuesday, August 5, 2014

no image

Java Interview Questions and Answers Part 2

Here is my list of another Java interview questions, In my previous post( Tricky Java interview questions and Answers ), I shared some ... Read more »
no image

How to avoid NullPointerException in Java

In Java, a special null value can be assigned to an object’s reference and denotes that the object is currently pointing to unknown pie... Read more »
no image

Overriding equals() and hashCode() method in Java

marketing equals() and hashCode() methods in Java are two fundamental method declared in Object class. equals() method is u... Read more »

Thursday, July 31, 2014

no image

Abstract Class vs Interface in Java

Abstract Class and Interface are core part of Java. Whether to chose interface or abstract class is one of the design decision that eve... Read more »

Monday, July 28, 2014

no image

Check if two Strings are Anagram in Java

This question was asked from me in a written test of a top IT MNC company. But, the way of asking the question was different. This ques... Read more »

Sunday, July 27, 2014

no image

Find longest Palindrome in a String in Java

This question is asked from me in an interview. To find out the largest palindrome in a string, first we need to identify the logic. ... Read more »

Friday, July 25, 2014

no image

Singleton Design Pattern in Java

Singleton is a part of Gang of Four design pattern and it is categorized under creational design patterns. From the definition, it s... Read more »

Thursday, July 24, 2014

no image

Different ways to implement Threads in Java

Java is a multithreaded programming language. A multithreaded program contains two or more threads that can run concurrently and can ha... Read more »

Wednesday, July 23, 2014

Why Quicksort is better than Mergesort

Why Quicksort is better than Mergesort

This question was asked me in one of the interview and this is one of the unique questions among all the questions asked from me in all... Read more »