Upload Button Icon Add office photos

Filter interviews by

Servtek It Java Developer Interview Questions and Answers

Updated 18 Aug 2023

Servtek It Java Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

All aptitude Questions Regarding programs.

Round 3 - Technical 

(1 Question)

  • Q1. Regarding Structs,Hibernate,Spring,SpringBoot
  • Ans. I Answered the Questions what i know
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Servtek It Java Developer interview:
  • core java,
  • Spring
  • Spring Boot
  • Hibernate
  • HTML
  • Javascript

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain architecture of your project
  • Q2. Some questions on Java, Spring Boot and sql
Round 2 - Technical 

(2 Questions)

  • Q1. Project flow and some behavioural questions
  • Q2. Project contribution of yours
  • Ans. 

    Developed a web application for tracking employee attendance and performance

    • Implemented user authentication and authorization using Spring Security

    • Utilized Hibernate for database interaction and data persistence

    • Designed and developed RESTful APIs for frontend integration

    • Used AngularJS for frontend development to create interactive user interfaces

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic formalities before offer release

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand your project properly and have your basic of programming very clear
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Core Java, multithreading and foncurrency
  • Q2. Springboot , app
  • Q3. Working of hashset
  • Ans. 

    HashSet is a collection that does not allow duplicate elements and does not guarantee the order of elements.

    • HashSet uses a hash table for storage.

    • Elements are stored based on their hash code.

    • Adding an element to a HashSet returns false if the element is already present.

    • Example: HashSet set = new HashSet<>(); set.add("apple");

Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Why do want to join Deloitte
  • Ans. 

    I want to join Deloitte because of its reputation for innovation, diverse projects, and opportunities for growth.

    • Deloitte is known for its innovative projects and cutting-edge technology, which aligns with my passion for staying up-to-date with the latest trends in Java development.

    • I am impressed by Deloitte's diverse range of projects and clients, which will provide me with valuable experience and the opportunity to w...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Diff between abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any of these.

    • A class can extend only one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define a common behavior among subclasses, while interfaces are used to define a contract for classes...

  • Answered by AI
  • Q2. Explain about handler methods
  • Ans. 

    Handler methods in Java are methods that are responsible for handling incoming requests and generating responses.

    • Handler methods are typically defined in classes annotated with @Controller or @RestController.

    • These methods are mapped to specific URLs using @RequestMapping or other mapping annotations.

    • Handler methods can have parameters such as HttpServletRequest, HttpServletResponse, or model attributes.

    • The return value...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Prime number program
  • Ans. 

    A program to check if a given number is prime or not.

    • Create a function to check if a number is prime by iterating from 2 to the square root of the number.

    • If the number is divisible by any number other than 1 and itself, it is not prime.

    • Handle edge cases like 0, 1, and negative numbers separately.

  • Answered by AI
  • Q2. 3rd highest salary employee
  • Ans. 

    To find the 3rd highest salary employee, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query to select distinct salaries in descending order

    • Use 'LIMIT 1 OFFSET 2' to get the 3rd highest salary

    • Join this result with the employee table to get the employee details

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions and some questions from PostgreSQL.

Round 2 - Technical 

(5 Questions)

  • Q1. Java fundamental questions?
  • Q2. Collection Framework.
  • Q3. 2-3 easy to medium Coding Questions.
  • Q4. Questions from Object oriented programming in Java?
  • Q5. Implementation of HashMap , LinkedList, HashSet, Heap?
  • Ans. 

    HashMap, LinkedList, HashSet, and Heap are data structures commonly used in Java for storing and organizing data.

    • HashMap: key-value pairs, uses hashing to store and retrieve elements efficiently (e.g. HashMap)

    • LinkedList: linear data structure, elements are stored in nodes with pointers to the next node (e.g. LinkedList)

    • HashSet: collection of unique elements, uses hashing to ensure uniqueness (e.g. Hash...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GlobalLogic Java Developer interview:
  • Java
  • oops
  • Collection Framework
Interview preparation tips for other job seekers - Interviewers were very friendly and helpful.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Comparable vs Comparator
  • Ans. 

    Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java.

    • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.

    • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class that compares objects based on specific criteria.

    • Example: Sorting a list of ...

  • Answered by AI
  • Q2. Difference between List and Set
  • Ans. 

    List allows duplicate elements and maintains insertion order, while Set does not allow duplicates and does not maintain order.

    • List can contain duplicate elements, Set cannot

    • List maintains insertion order, Set does not guarantee order

    • List is implemented by classes like ArrayList, LinkedList, Set is implemented by classes like HashSet, TreeSet

    • Example: List list = new ArrayList<>(); Set set = new HashSet<>();

Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Questions on permuation and combination

Round 2 - Technical 

(2 Questions)

  • Q1. Java core and advanced concepts
  • Q2. Springboot annotations, spring mvc, spring security
Round 3 - HR 

(1 Question)

  • Q1. Friendly questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. They basically asked questions related to your project.
  • Q2. Then asked design patters and related questions to it.
  • Q3. Asked SOLID principal of software development.
  • Q4. Gave some coding questions related to Java array where I had to return the index of values whos total is 10.
  • Q5. How you would connect springboot project with data base.
  • Ans. 

    Use Spring Data JPA to connect Spring Boot project with database.

    • Add database configuration in application.properties or application.yml file

    • Create entity classes annotated with @Entity and @Table

    • Create repository interfaces extending JpaRepository

    • Use @Autowired annotation to inject repository in services or controllers

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Ages, trains, profit losss, hcf lcm, clock, simple interest 30 min

Round 2 - Coding Test 

Array string sorting algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa

Servtek It Interview FAQs

How many rounds are there in Servtek It Java Developer interview?
Servtek It interview process usually has 3 rounds. The most common rounds in the Servtek It interview process are Resume Shortlist, Aptitude Test and Technical.

Tell us how to improve this page.

People are getting interviews through

based on 1 Servtek It interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Logistics Manager
4 salaries
unlock blur

₹2 L/yr - ₹2 L/yr

Coordinator
4 salaries
unlock blur

₹2 L/yr - ₹2.4 L/yr

Customer Service Executive
3 salaries
unlock blur

₹1.2 L/yr - ₹2.3 L/yr

Service Engineer
3 salaries
unlock blur

₹0.7 L/yr - ₹2.3 L/yr

Managing Director
3 salaries
unlock blur

₹18 L/yr - ₹26 L/yr

Explore more salaries
Compare Servtek It with

Cognizant

3.8
Compare

Deloitte

3.8
Compare

Ernst & Young

3.5
Compare

Teleperformance

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview