Candidatei-me por meio de uma faculdade ou universidade. Fiz uma entrevista na empresa Servosys Solutions (Bombaim).
Entrevista
Interview is taken online and basic questions are asked as a fresher the interviewer was well behaved and having great knowledge and experience. But the experience on site was not that good the client was acting very non-professional. They will be just using you for their profit and they will not think of you as a human they basically want robots.
Candidatei-me por meio de uma faculdade ou universidade. Fui entrevistado pela Servosys Solutions (Nova Deli) em abr. de 2025
Entrevista
Firstly aptitude round
Then there are two interviews
I just only gave first interview,cleared it, got shortlisted for second one. But never heard after. The college said the company's requirement is fulfilled so they will not take your interview
In first interview they asked about oops concepts of java, collections in java, array list and linked list difference, and one coding question on hashset.
Candidatei-me online. O processo levou 2 dias. Fui entrevistado pela Servosys Solutions em out. de 2024
Entrevista
1. Technical Interview
2. Techno Managerial Interview
3. HR Interview
2 Technical on core Java, JSP and Servlet and 1 HR Round
Job Description Looking for a talented full stack developer who is proficient in Java/ JavaScript.
Your primary focus will be developing user interface components and implementing
them following well-known workflows. You will ensure that these components and
the overall application are robust and easy to maintain. You will coordinate with the
rest of the team working on different layers of the infrastructure. Therefore, a
commitment to collaborative problem solving, sophisticated design, and quality
product is important. You will work in modern enterprise web stack with a growing
development team.
Perguntas de entrevista [1]
Pergunta 1
Interview questions
Round 1 - cleared (Core Java)
Round 2 - Failed (I was not prepared that much)
Round 1: (30 min , Google meet)
1. Abstract vs Interface
2. Can we overload Main method? Yes
3. Overloading vs Overriding
4. Can we create object of Abstract class (No, only ref can be created)
Abstract class is a restricted class that cannot be used to create objects (to access it, it must be inherited from another class).
5. String immutable why?
6. checked, unchecked exception.
7. GET vs POST Method
8. How HashMap works internally (hash collision, hashing algo basic)
9. Can we put duplicate value in hashmap and why?
10 Finalize() ?
Round 2: (30 min , Google meet)
1. Share screen and write down what would be the output?
String str1="test";
String str2= new String("test");
String str3= "test";
if(str1==str2){
System.out.println("success");
}else {
System.out.println("fail");
}
if(str1==str3){
System.out.println("success");
}else {
System.out.println("fail");
}
2. Share screen and write down SQL to get Average salary of each department
Employee
EMPID
EMPNAME
EMPAGE
SALARY
DEPTID
Department
DEPTID
DEPTNAME
DEPTLOCATION
https://www.geeksforgeeks.org/finding-average-salary-of-each-department-in-sql-server/
3. Share screen and write down the JDBC steps.
4. Any front end skills ( I said I know basics of HTML, CSS, JS )
5. What other systems you worked on ?
6. Why you left previous organization ?
7. Tell me about Design Pattern. Have you worked on Design Pattern?
8. Have you worked on Servers? Apache Tomcat.
Is Apache Tomcat, Web server or Application Server ? Difference between Web server and Application Server.
9. Types of iterators in Java?
10. What Stacks you have used in your project?
11. Types of Garbage collector.
12. Can we write try-finally block and no catch block ?