Affichage des articles dont le libellé est Entretien. Afficher tous les articles
Affichage des articles dont le libellé est Entretien. Afficher tous les articles

mardi 6 décembre 2016

Top 10 Tricky Java interview questions and Answers

10 Tricky Java interview question - Answered

Here is my list of 10 tricky Java interview questions, Though I have prepared and shared lot of difficult core Java interview question and answers, But I have chosen them as Top 10 tricky questions because you can not guess answers of this tricky Java questions easily, you need some subtle details of Java programming language to answer these questions.
Question: What does the following Java program print?
public class Test {
    public static void main(String[] args) {
        System.out.println(Math.min(Double.MIN_VALUE, 0.0d));
    }
}
Answer: This question is tricky because unlike the Integer, where MIN_VALUE is negative, both the MAX_VALUE and MIN_VALUE of the Double class are positive numbers. The Double.MIN_VALUE is 2^(-1074), a double constant whose magnitude is the least among all double values. So unlike the obvious answer, this program will print 0.0 because Double.MIN_VALUE is greater than 0. I have asked this question to Java developer having experience up to 3 to 5 years and surprisingly almost 70% candidate got it wrong.

What will happen if you put return statement or System.exit () on try or catch block? Will finally block execute?
This is a very popular tricky Java question and it's tricky because many programmers think that no matter what, but the finally block will always execute. This question challenge that concept by putting a return statement in the try or catch block or calling System.exit() from try or catch block. Answer of this tricky question in Java is that finally block will execute even if you put a return statement in the try block or catch block but finally block won't run if you call System.exit() from try or catch block.


Question: Can you override a private or static method in Java?
Another popular Java tricky question, As I said method overriding is a good topic to ask trick questions in Java. Anyway, you can not override a private or static method in Java, if you create a similar method with same return type and same method arguments in child class then it will hide the superclass method, this is known as method hiding.
Similarly, you cannot override a private method in sub class because it's not accessible there, what you do is create another private method with the same name in the child class.



Question: What do the expression 1.0 / 0.0 will return? will it throw Exception? any compile time error?
Answer: This is another tricky question from Double class. Though Java developer knows about the double primitive type and Double class, while doing floating point arithmetic they don't pay enough attention to Double.INFINITY, NaN, and -0.0 and other rules that govern the arithmetic calculations involving them. The simple answer to this question is that it will not throw ArithmeticExcpetion and return Double.INFINITY.

Also, note that the comparison x == Double.NaN always evaluates to false, even if x itself is a NaN. To test if x is a NaN, one should use the method call Double.isNaN(x) to check if given number is NaN or not. If you know SQL, this is very close to NULL there. 
Does Java support multiple inheritances?
This is the trickiest question in Java if C++ can support direct multiple inheritances than why not Java is the argument Interviewer often give. Answer of this question is much more subtle then it looks like, because Java does support multiple inheritances of Type by allowing an interface to extend other interfaces, what Java doesn't support is multiple inheritances of implementation. This distinction also gets blur because of default method of Java 8, which now provides Java, multiple inheritances of behavior as well.


What will happen if we put a key object in a HashMap which is already there?
This tricky Java question is part of another frequently asked question, How HashMap works in Java. HashMap is also a popular topic to create confusing and tricky question in Java. Answer of this question is if you put the same key again then it will replace the old mapping because HashMap doesn't allow duplicate keys. The Same key will result in the same hashcode and will end up at the same position in the bucket.
 Each bucket contains a linked list of Map.Entry object, which contains both Key and Value. Now Java will take the Key object from each entry and compare with this new key using equals() method, if that return true then value object in that entry will be replaced by new value.



Question: What does the following Java program print?
public class Test {
    public static void main(String[] args) throws Exception {
        char[] chars = new char[] {'\u0097'};
        String str = new String(chars);
        byte[] bytes = str.getBytes();
        System.out.println(Arrays.toString(bytes));
    }
}

Answer: The trickiness of this question lies on character encoding and how String to byte array conversion works. In this program, we are first creating a String from a character array, which just has one character '\u0097', after that we are getting the byte array from that String and printing that byte. Since \u0097 is within the 8-bit range of byte primitive type, it is reasonable to guess that the str.getBytes() call will return a byte array that contains one element with a value of -105 ((byte) 0x97).

However, that's not what the program prints and that's why this question is tricky. As a matter of fact, the output of the program is operating system and locale dependent. On a Windows XP with the US locale, the above program prints [63], if you run this program on Linux or Solaris, you will get different values.

To answer this question correctly, you need to know about how Unicode characters are represented in Java char values and in Java strings, and what role character encoding plays in String.getBytes().

In simple word, to convert a string to a byte array, Java iterate through all the characters that the string represents and turn each one into a number of bytes and finally put the bytes together. The rule that maps each Unicode character into a byte array is called a character encoding. So It's possible that if same character encoding is not used during both encoding and decoding then retrieved value may not be correct. When we call str.getBytes() without specifying a character encoding scheme, the JVM uses the default character encoding of the platform to do the job.

The default encoding scheme is operating system and locale dependent. On Linux, it is UTF-8 and on Windows with a US locale, the default encoding is Cp1252. This explains the output we get from running this program on Windows machines with a US locale. No matter which character encoding scheme is used, Java will always translate Unicode characters not recognized by the encoding to 63, which represents the character U+003F (the question mark, ?) in all encodings.


If a method throws NullPointerException in the superclass, can we override it with a method which throws RuntimeException?
One more tricky Java questions from the overloading and overriding concept. The answer is you can very well throw superclass of RuntimeException in overridden method, but you can not do same if its checked Exception.


What is the issue with following implementation of compareTo() method in Java
public int compareTo(Object o){
   Employee emp = (Employee) o;
   return this.id - e.id;
}
where an id is an integer number.
Well, three is nothing wrong in this Java question until you guarantee that id is always positive. This Java question becomes tricky when you can't guarantee that id is positive or negative. the tricky part is, If id becomes negative than subtraction may overflow and produce an incorrect result.



How do you ensure that N thread can access N resources without deadlock?
If you are not well versed in writing multi-threading code then this is a real tricky question for you. This Java question can be tricky even for the experienced and senior programmer, who are not really exposed to deadlock and race conditions. The key point here is ordering, if you acquire resources in a particular order and release resources in the reverse order you can prevent deadlock.


Question: Consider the following Java code snippet, which is initializing two variables and both are not volatile, and two threads T1 and T2 are modifying these values as following, both are not synchronized
int x = 0;
boolean bExit = false;

Thread 1 (not synchronized)
x = 1; 
bExit = true;

Thread 2 (not synchronized)
if (bExit == true) 
System.out.println("x=" + x);
Now tell us, is it possible for Thread 2 to print “x=0”?

Answer: It's impossible for a list of tricky Java questions to not contain anything from multi-threading. This is the simplest one I can get. Answer of this question is Yes, It's possible that thread T2 may print x=0.Why? because without any instruction to compiler e.g. synchronized or volatile, bExit=true might come before x=1 in compiler reordering. Also, x=1 might not become visible in Thread 2, so Thread 2 will load x=0. Now, how do you fix it?

 When I asked this question to a couple of programmers they answer differently, one suggests to make both threads synchronized on a common mutex, another one said make both variable volatile. Both are correct, as it will prevent reordering and guarantee visibility.

But the best answer is you just need to make bExit as volatile, then Thread 2 can only print “x=1”. x does not need to be volatile because x cannot be reordered to come after bExit=true when bExit is volatile.

What is difference between CyclicBarrier and CountDownLatch in Java
Relatively newer Java tricky question, only been introduced from Java 5. The main difference between both of them is that you can reuse CyclicBarrier even if Barrier is broken, but you can not reuse CountDownLatch in Java.

What is the difference between StringBuffer and StringBuilder in Java?
Classic Java questions which some people think tricky and some consider very easy. StringBuilder in Java was introduced in JDK 1.5 and the only difference between both of them is that StringBuffer methods e.g. length(), capacity() or append() are synchronized while corresponding methods in StringBuilder are not synchronized.

Because of this fundamental difference, concatenation of String using StringBuilder is faster than StringBuffer. Actually, it's considered the bad practice to use StringBuffer anymore, because, in almost 99% scenario, you perform string concatenation on the same thread.


Can you access a non-static variable in the static context?
Another tricky Java question from Java fundamentals. No, you can not access a non-static variable from the static context in Java. If you try, it will give compile time error. This is actually a common problem beginner in Java face when they try to access instance variable inside the main method. Because main is static in Java, and instance variables are non-static, you can not access instance variable inside main. See, why you can not access a non-static variable from static method to learn more about this tricky Java questions.

Questions for practice
  1. When doesn't Singleton remain Singleton in Java?
  2. is it possible to load a class by two ClassLoader?
  3. is it possible for equals() to return false, even if contents of two Objects are same?
  4. Why compareTo() should be consistent to equals() method in Java?
  5. When do Double and BigDecimal give different answers for equals() and compareTo() == 0. 
  6. How does "has before" apply to volatile work?
  7. Why is 0.1 * 3 != 0.3,
  8. Why is (Integer) 1 == (Integer) 1 but (Integer) 222 != (Integer) 222 and which command arguments change this.
  9. What happens when an exception is thrown by a Thread?
  10. Difference between notify() and notifyAll() call?
  11. Difference between System.exit() and System.halt() method?
  12. Does following code legal in Java? is it an example of method overloading or overriding?
  13. public String getDescription(Object obj){
       return obj.toString;
    }
    public String getDescription(String obj){
       return obj;
    }
    and
    public void getDescription(String obj){
       return obj;
    }


This was my list of Some of the most common tricky questions in Java. It's not a bad idea to prepare tricky Java question before appearing for any core Java or J2EE interview. One or two open-ended or tricky question is quite common in Java interviews.

lundi 22 août 2016

Les erreurs à ne pas faire en entretien

Je vais réagir un peu à chaud, suite à quelques entretiens catastrophiques que j’ai fait passer dernièrement. Je vous ai déjà parlé des entretiens d’embauche, mais là je vais être très directif, presque lapidaire.

Soyez ponctuel

L’entretien d’embauche, c’est LE moment où il faut séduire le recruteur. Si vous êtes en retard le jour où vous devriez être au top, à quoi s’attendre au bout du quatrième mois de boulot sur un projet difficile ? Vous arriverez tous les jours après 11 heures du matin ?
Prenez soin de noter les coordonnées téléphoniques que vous pourrez appeler en cas de problème.

Apportez plusieurs copies de votre C.V.

Si vous arrivez les mains dans les poches, qu’est-ce que ça peut donner comme indice quant à votre envie de décrocher le poste ?
Par pitié, au moment où on vous demande « Vous avez une copie de votre C.V. ? », ne répondez surtout pas « Il est disponible sur Internet, vous pouvez l’imprimer » ! Cela revient à dire que c’est au recruteur de prendre le temps que vous n’avez pas voulu prendre vous-même.
Le plus « amusant », c’est que bien souvent le gros problème n’est pas pour le recruteur, mais pour le pauvre candidat qui se retrouve à tenter de présenter son parcours sans le support de son curriculum.

Connaissez-vous vous-même

En tant que candidat, vous devez fournir à votre interlocuteur des raisons de vouloir vous embaucher. Pour cela, vous allez lui parler de vos études et des entreprises où vous avez travaillé, mais ça ne l’intéressera pas. Ce qu’il veut, c’est que vous lui expliquiez en détail ce que vous savez faire, ce que vous avez fait, et ce que vous avez envie de faire.
Détaillez le travail que vous avez réalisé durant vos précédentes expériences professionnelles et/ou vos projets d’étude. Expliquez les problèmes que vous avez rencontrés, les solutions que vous avez appliquées, ce que vous avez appris. Dites si vous avez travaillé tout seul ou au sein d’une équipe, et alors expliquez votre rôle.
Il y a 2 situations qui sont difficilement supportables :

  • Lorsqu’il faut tirer les vers du nez du candidat. Vous devez vous vendre. Au bout de la troisième fois que le recruteur vous demande de lui en dire plus, d’entrer dans le détail, de prouver votre savoir technique, quelque chose devrait faire « Tilt » dans votre tête. Inversez la tendance, prenez les devants : il vaut mieux que le recruteur vous demande de passer en vitesse sur certains aspects plutôt que de risquer de passer à côté de certaines informations qui pourraient être importantes.
  • Lorsque le candidat ne se souvient plus de ce qu’il a fait juste 2 ans auparavant. Un entretien, ça se prépare. Relisez votre CV au moins une fois, et prenez le temps de vous souvenir des détails importants – ceux qui méritent d’être racontés – de vos expériences. Si une ligne de votre CV est tellement peu intéressante que vous n’avez rien à raconter à son sujet, pourquoi y est-elle ?

Éteignez-moi ce ****** de téléphone portable

Si on a inventé le mode vibreur, ce n’est pas pour rien. Un téléphone qui sonne pendant un entretien, c’est désagréable. Quand il sonne une seconde fois, ça devient énervant. Quand c’est suivi par un SMS, ça devient un problème.
J’ai la politesse de couper mon téléphone au début de l’entretien, le minimum est que vous fassiez de même. Si par malheur vous n’y avez pas pensé, excusez-vous dès le premier appel, et éteignez aussitôt votre mobile. Ne prenez pas le risque qu’il sonne de nouveau (surtout si vous avez une sonnerie très rigolote mais complètement débile).
Et surtout, surtout, ne décrochez pas ! Ne rigolez pas, un candidat m’a déjà fait le coup pendant un entretien.

Renseignez-vous un minimum

Vous n’êtes pas un mercenaire de l’informatique ; si vous en êtes un, ce n’est pas l’image que vous devez donner (et ne m’envoyez pas de CV, merci). Si vous débarquez sans avoir la moindre idée de l’activité de l’entreprise dans laquelle vous postulez, vous risquez d’être catalogué comme une personne qui a l’habitude d’envoyer des centaines de CV à travers le pays. Comment s’intéresser à vous si vous ne semblez pas vous intéresser un minimum à l’endroit où vous allez peut-être travailler ?
Peut-être avez-vous fait des recherches, mais que celles-ci n’ont rien donné de concluant. N’hésitez pas alors à le dire !
De la même manière, si l’offre d’emploi ou la description de poste contenait des noms ou des acronymes que vous ne connaissez pas (nom de langage de programmation, de technologie, ou autre), prenez le temps de vous renseigner sur Internet. Dites ensuite au recruteur que vous ne connaissiez pas cette chose, mais que vous vous y êtes intéressé et que cela vous ouvre de nouvelles perspectives.
Par contre, ne faites pas l’erreur de dire que vous connaissez cette techno, juste après avoir lu sa définition sur Wikipedia. Soyez certain que le recruteur s’en rendra compte rapidement.

Maîtrisez-vous

Quand je fais passer un entretien, j’essaye de mettre le candidat à l’aise. Je sais que c’est un moment relativement stressant, et qu’il faut réduire ce stress si je veux pouvoir me faire une idée précise de la valeur du candidat. Mon but est de recruter une personne de qualité, pas de perdre mon temps en stressant les gens au point de leur faire perdre leurs moyens.
Malheureusement, certains candidats interprètent mal cette convivialité, et commencent à plaisanter comme si on était potes. Yeah, c’est super cool ! Mais bon, on en reparlera si tu es embauché, mon gars. En attendant, tu es gentil de surveiller ton langage et de rester concentré sur ton objectif. Ce n’est pas parce que tu n’es pas face à un costard-cravate d’une multinationale que tu peux te comporter fondamentalement différemment. Hum…
Prenez aussi garde à ne pas vous lancer dans de longs monologues sans laisser à votre interlocuteur la possibilité d’en placer une. Faites aussi attention à ne pas élever la voix plus que de raison ; cela arrive à beaucoup de personnes qui ont du mal à gérer leur nervosité, et c’est très désagréable (merci les maux de crâne à la fin de la journée).

mardi 24 mai 2016

Liens intéressants pour Cours et QCM Java

QCM : 

http://kitabxana.net/files/books/file/1354098917.pdf

http://pages.cs.wisc.edu/~hasti/cs368/JavaTutorial/NOTES/Exceptions.html

http://www.math.univ-paris13.fr/~chaussar/Teaching/2010-2011/IN120/corrige_test_final.pdfage Fundamentals

http://www.quizz.biz/quizz-417842.html


http://www.ukonline.be/programmation/java/exercices/qcm.php?id=9

http://jacques.laforgue.free.fr/SITE_NFA032/Examens/Site/2011-2012/CorrectionExamen2emeSessionNFA002_2011-2012.pdf

http://ensiwiki.ensimag.fr/index.php/QCM_APOO

jeudi 26 novembre 2015

40 Most Asked Java Interview Programs With Solutions

40 Most Asked Java Interview Programs With Solutions

1) How to reverse a string in java?
2) How to create a pyramid of numbers in java?
3) How do you remove all white spaces from a string in java?
4) How to find duplicate characters in a string in java?
5) How do you check the equality of two arrays in java?
6) Anagram program in java
7) Armstrong number program in java
8) How to find duplicate elements in an array?
9) How to find sum of all digits of a number in java?
10) How to find second largest number in an integer array?
11) How to perform matrix operations in java?
12) How to count occurrences of each character in a string in java?
13) How to find largest number less than a given number and without a given digit?
14) How to find all pairs of elements in an array whose sum is equal to given number?
15) How to find continuous sub array whose sum is equal to given number?
16) How to remove duplicate elements from ArrayList in java?
17) How to check whether given number is binary or not?
18) How to check whether one string is a rotation of another in java?
19) How to find intersection of two arrays in java?
20) How to check whether user input is number or not in java?
21) How to find trigonometric values of an angle in java?
22) How to reverse each word of a string in java?
23) How to separate zeros from non-zeros in an array?
24) Decimal To Binary, Decimal To Octal And Decimal To HexaDecimal In Java
25) How to find all the leaders in an integer array in java?
26) Reverse and add until you get a palindrome
27) Selection sort in java
28) Reverse the string with preserving the position of spaces
29) Roman equivalent of a decimal number
30) percentage of uppercase, lowercase, digits and special characters in a string
31) Launch external applications through java code
32) Find missing number in an array
33) String immutable program
34) Arrays.deepToString() method example.
35) 18 Java ArrayList Programming Examples.
36) 16 Java LinkedList Programming Examples.
37) Detection of deadlocked threads
38) Generate random numbers
39) Java PriorityQueue Example.
40) Java HashSet Example.
41) Java LinkedHashSet Example.
42) Java TreeSet Example.