-->
Skip to main content

Posts

NIIT Technologies Java Interview Questions for Experienced (3+)

NIIT Technologies Java Interview Questions for Experienced Today we will discuss NIIT Technologies Java Interview Questions for experienced developers having 3+ Years of Experience. In the earlier post, we had discussed  IRIS Software Interview Questions in Java ,  Kent CamEye Interview Questions in Java , and Fiserv Interview questions in Java .   Let's see the NIIT Java developer interview questions now... These questions are solely on the basis of the face-to-face interview given by people and collected thereafter. So let's get started... NIIT Java Interview Questions Face to Face Rounds      Core Java Interview Questions Write a program to print Fibonacci Series using recursion? What is the difference between hashtable and hashmap? How concurrency handles in the hashtable and hashmap? Is there any other alternative for concurrent collections in java?     Spring Interview Questions What is a Spring transaction? What is DI/IOC and what...

Fiserv interview questions in Java

Fiserv Interview Questions in Java Today we will discuss Fiserv Interview Questions in Java for experienced developers having 3+ Years of Experience. In the earlier post, we had discussed  IRIS Software Interview Questions in Java  and  Kent CamEye Interview Questions in Java .   Let's see the Fiserv Interview Questions now... These questions are solely on the basis of the telephonic interview given by people and collected thereafter. So let's get started... Fiserv Interview Questions Telephonic Rounds       Spring Boot Interview Questions What advantages does it provide? What is a spring initializer?         Core Java Interview Questions What is a race condition in java? What is the Deadlock condition in java and how to prevent it? We have a String s = ({)}(}) In this string we have to write logic to identify the missing opening or closing braces if any? We have a array = [12,25,-79,0,98,71], find the longest continu...

Solution : java.lang.NoSuchMethodError: org.apache.commons.codec.binary.Base64.(I)V]

Solution : java.lang.NoSuchMethodError: org.apache.commons.codec.binary.Base64.<init>(I)V] This java.lang.NoSuchMethodError: org.apache.commons.codec.binary.Base64.<init>(I)V] happens when we compile our source class using common codec jar version 1.4 or more but at runtime , it founds common-codec jar either equal to 1.3 or lesser than that in which this constructor was not present. Exception Trace will look like this: java.lang.NoSuchMethodError: org.apache.commons.codec.binary.Base64.<init>(I)V at org.apache.http.impl.auth.BasicScheme.authenticate(BasicScheme.java:166) [httpclient-4.5.10.jar:4.5.10] at org.apache.http.impl.auth.HttpAuthenticator.doAuth(HttpAuthenticator.java:233) [httpclient-4.5.10.jar:4.5.10] at org.apache.http.impl.auth.HttpAuthenticator.generateAuthResponse(HttpAuthenticator.java:213) [httpclient-4.5.10.jar:4.5.10] at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:262) [httpclient-4.5.10.jar:4.5.10] ...