Solicité el puesto a través de un captador. El proceso duró 4 días. Acudí a una entrevista en InputZero (Bengaluru) en dic 2018
Entrevista
first round was written exam where basic aptitude and java questions asked. second round is technical which is basically on skype and the third is also technical round through skype
Preguntas de entrevista [1]
Pregunta 1
difference between jvm, jdk and jre. diffrence between throw and throws and some project related questions.
Envié una solicitud electrónica. Acudí a una entrevista en InputZero (Bengaluru)
Entrevista
coding around data structure, basic, 2programming technical round java, SQL, ds, oops,JDBC hr round The interview process was very easy and smooth. Highly experienced in customer service. Achieved friendliness to ensure customer satisfaction. Use of numerous skills to train and lead others. Good work ethic.
Preguntas de entrevista [2]
Pregunta 1
java programming ) What is the output of the following Java program? class Test { public static void main (String args[]) { System.out.println(10 * 20 + "Javatpoint"); System.out.println("Javatpoint" + 10 * 20); } }
What is the purpose of a default constructor? class Student3{ int id; String name; void display(){System.out.println(id+" "+name);} public static void main(String args[]){ Student3 s1=new Student3(); Student3 s2=new Student3(); s1.display(); s2.display(); } }
Solicité el puesto a través de un captador. Acudí a una entrevista en InputZero (Bengaluru) en jul 2019
Entrevista
I was interviewed on july 2019 in bengaluru.
So, actually in 1st round they took mcq questions on java, it was 40 qs in 30 mins of moderate level with negative marking of 0.5 if 3 wrong.
In the next round it was f2f. I believe that interviewer was not so much interested so, after asking formal intro he asked me oops concept polymorphism which i explained and then again he asked me about overloading and overriding. This time i explained him in paper. Next he asked me one question which i wrote and described him but he told it can't be solved that way and told me wait outside.
I waited for about an hr and the hr was busy in something else only then she told me that no one is available for the interview today so wll call again next week upto which i replied I am working can't take leaves every week so she arranged the interview any how.
Third round f2f started with formal introduction and he asked me 3 coding questions to write. I wrote all three with optimized solution of two.
The stupidest thing i ever heard from hr that time was "you were good at the rounds and everything was fine but we are looking for some 1-2 years experienced developer" So, basically you called me to waste my time.
It was just waste of time and worst experience of interview.
Preguntas de entrevista [1]
Pregunta 1
1. find the pallindrome of an integer.
2. You have an array of integers, you need to make all zeros of input array to right side.
3. find the second highest number in the array.
4. You have an string, you have to print the 3 occurence and the '@' and again next 3 occurence and '@'
let string be 123456789
output : 123@456@789@