Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Endava Team. If you also belong to the team, you can get access from here

Endava Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 270 Reviews

Filter interviews by

Endava Interview Questions, Process, and Tips

Updated 5 Jan 2025

Top Endava Interview Questions and Answers

View all 13 questions

Endava Interview Experiences

Popular Designations

17 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

57 bits of Aptitude, Reasoning, Verbal Ability,Java, Python, DBMS, C, C++ and 3 coding questions
1) Arrays&Math, 2) Strings 3) Sql Query based on Joins and Sub-Query.
Totally 60 bits with a time 1&1/2 hr.

Round 2 - Technical 

(10 Questions)

  • Q1. Tell me about yourself that is not present in the resume.
  • Ans. 

    I am an avid hiker and have climbed several mountains in the past year.

    • I enjoy spending time outdoors and challenging myself physically

    • I have completed multiple hiking trails, including the Appalachian Trail and Mount Kilimanjaro

    • I find solace and inspiration in nature, which helps me stay focused and motivated in my work

  • Answered by AI
  • Q2. Questions on your resume and project. why did you choose Java? why do you choose the project while there are many different projects are out there? what frameworks have you used in your project?
  • Q3. Questions on Logical Reasoning based on analogy,number series.
  • Q4. What is DBMS ? and Differentiate blw R-DBMS and DBMS.
  • Ans. 

    DBMS stands for Database Management System. R-DBMS is a relational database management system which stores data in tables with relationships.

    • DBMS is a software system that allows users to define, create, maintain and control access to the database.

    • R-DBMS is a type of DBMS that stores data in tables with relationships between the tables.

    • R-DBMS uses Structured Query Language (SQL) for accessing and managing the data.

    • Exam...

  • Answered by AI
  • Q5. What are the disadvantages of DBMS?
  • Ans. 

    Disadvantages of DBMS include high cost, complexity, potential for data loss, and security vulnerabilities.

    • High cost of implementation and maintenance

    • Complexity in managing and scaling the database

    • Potential for data loss due to system failures or human errors

    • Security vulnerabilities that can lead to data breaches

    • Dependency on a single vendor for support and updates

  • Answered by AI
  • Q6. What are the features of Java?
  • Ans. 

    Java is a versatile programming language known for its platform independence, object-oriented features, and robust standard library.

    • Platform independence - Java programs can run on any platform that has a Java Virtual Machine (JVM)

    • Object-oriented - Java supports the principles of encapsulation, inheritance, and polymorphism

    • Robust standard library - Java provides a rich set of APIs for tasks like networking, I/O, and da

  • Answered by AI
  • Q7. What is meant by polymorphism? What are the different types of polymorphism and explain them with an example?
  • Ans. 

    Polymorphism in Java refers to the ability of a single method to perform different actions based on the object it is acting upon.

    • Types of polymorphism: compile-time polymorphism (method overloading) and runtime polymorphism (method overriding)

    • Method overloading: multiple methods in the same class with the same name but different parameters

    • Example of method overloading: public void display(int a) and public void display...

  • Answered by AI
  • Q8. Are you trained in technologies like AI and ML?
  • Ans. 

    No, my training has primarily focused on Java development.

    • My training has primarily focused on Java development, with a strong foundation in core Java concepts and frameworks.

    • While I have a basic understanding of AI and ML concepts, I do not have formal training or experience in these technologies.

    • I am open to learning and expanding my skills in AI and ML in the future.

  • Answered by AI
  • Q9. What is No-Sql? In what cases does No-Sql will be used?
  • Ans. 

    No-SQL is a type of database that does not use the traditional tabular structure of relational databases.

    • No-SQL databases are used when dealing with large amounts of unstructured or semi-structured data.

    • They are suitable for real-time applications, big data, and cloud-based systems.

    • Examples of No-SQL databases include MongoDB, Cassandra, and Redis.

  • Answered by AI
  • Q10. What do you aspire to in life?
  • Ans. 

    I aspire to continuously learn and grow, make a positive impact on others, and achieve personal fulfillment.

    • Continuous learning and growth in my career and personal life

    • Making a positive impact on others through my work and actions

    • Achieving personal fulfillment and happiness in all aspects of life

  • Answered by AI
Round 3 - Technical 

(8 Questions)

  • Q1. Tell me about yourself that is not present in the resume.
  • Ans. 

    I am an avid hiker and have climbed several mountains in the past year.

    • I enjoy spending time outdoors and challenging myself physically

    • I have completed multiple hiking trails, including the Appalachian Trail and Mount Kilimanjaro

    • I find peace and inspiration in nature, which helps me stay focused and motivated in my work

  • Answered by AI
  • Q2. Questions on Resume and Project. Why did you choose this project and How can you say that this project will improve your programming ability?
  • Q3. Predict a Sql Join Query(Inner Join) mcq bit based on the written test , Explain the query and what is right option.
  • Q4. A puzzle based on Water Jug Problem which should result 4L water by using 5 & 3 L jugs.
  • Q5. Why did you used JSP pages in your project.
  • Ans. 

    JSP pages were used in the project for dynamic content generation and seamless integration with Java code.

    • JSP allows for easy integration of Java code for dynamic content generation.

    • JSP pages can be easily maintained and updated without changing the Java code.

    • JSP pages provide a way to separate presentation logic from business logic.

    • JSP pages can be used to create reusable components for the project.

    • JSP pages offer a f

  • Answered by AI
  • Q6. What are the OOPS concept and explain them with an example.
  • Ans. 

    OOPS concepts are fundamental principles in object-oriented programming.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class Car with properties like make, model, and methods like start(), stop().

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: Class Truck inheriting from class Vehicle.

    • Polymorphism: Ability to present the same in...

  • Answered by AI
  • Q7. Which version of Java are you familiar with?
  • Ans. 

    I am familiar with Java 8 and Java 11.

    • Familiar with features like lambda expressions, streams, and default methods in Java 8.

    • Experience with features like local-variable type inference, HTTP/2 client, and new string methods in Java 11.

  • Answered by AI
  • Q8. What is an HashMap and where it is used?
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs and allows fast retrieval of values based on keys.

    • HashMap implements the Map interface and uses hashing to store elements.

    • It allows one null key and multiple null values.

    • Example: HashMap map = new HashMap<>(); map.put("apple", 5); int value = map.get("apple");

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st TR was smooth and he's friendly but 2nd TR was a not good and companies like galaxies often asks aptitude and puzzles in their interview DO PREPARE THEM!! Decent programming knowledge is enough and should be able to explain your project and its bugs and errors you've faced. Aptitude questions from the written test will be asked in interview.

Skills evaluated in this interview

Top Endava Associate Java Developer Interview Questions and Answers

Q1. What is No-Sql? In what cases does No-Sql will be used?
View answer (1)

Associate Java Developer Interview Questions asked at other Companies

Q1. Explain How was your syllobus was done in Lockdown at College?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell your experience

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

2 questions on dsa
1.Arrays find maximum sum
2.string anagram

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare good for quantitative section they give more priority to quantitative aptitude in interview aslo they ask aptitude questions

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It includes all multiple-choice questions on computer networks, database management systems, data structures, and output-based queries.

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)

Endava interview questions for popular designations

 Service Delivery Analyst

 (3)

 Software Developer

 (3)

 Associate Software Developer

 (2)

 Associate Engineer

 (1)

 Associate Java Developer

 (1)

 Developer

 (1)

 Lotus Notes Administrator

 (1)

 Network Engineer

 (1)

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 Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is LAN AND WAN
  • Ans. 

    LAN stands for Local Area Network, which connects devices in a small geographical area. WAN stands for Wide Area Network, which connects devices over a large geographical area.

    • LAN is typically used in homes, offices, or schools.

    • LAN has high data transfer rates and low latency.

    • Examples of LAN technologies include Ethernet and Wi-Fi.

    • WAN covers a larger area, such as cities, countries, or even globally.

    • WAN uses public or ...

  • Answered by AI
  • Q2. What is IP address
  • Ans. 

    An IP address is a unique numerical label assigned to each device connected to a computer network.

    • IP addresses are used to identify and locate devices on a network.

    • There are two types of IP addresses: IPv4 and IPv6.

    • IPv4 addresses consist of four sets of numbers separated by periods (e.g. 192.168.1.1).

    • IPv6 addresses are longer and consist of eight groups of four hexadecimal digits separated by colons (e.g. 2001:0db8:85a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Network Engineer Interview Questions asked at other Companies

Q1. TCP/IP layers, why is transport needed for communication? What is Subnet mask and how does it help in data communication. Why is Vlan needed? Based on what information does a switch and router send a packet or frame? Types of arp, What is p... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical interview conducted on SQL and linux
Round 2 - Technical 

(1 Question)

  • Q1. Discussion with project manager about previous worked project and their work related issues
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and notice period discussion

Service Delivery Analyst Interview Questions asked at other Companies

Q1. Why want to work here What is the diff between hedge fund and mutual fund What is investment banking
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Jawaharlal Nehru Technological University (JNTU) and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions based on skills and some aptitude questions and project explanation

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well of DSA and strings and arrays and resume skills

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)

Trainee Interview Questions & Answers

user image Anonymous

posted on 25 Oct 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Your work experience
  • Q2. What did you study

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)

SEO Executive Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2022

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 - One-on-one 

(2 Questions)

  • Q1. Jobs and Responsibility
  • Q2. Why did we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on advanced skills and demand good communication skills.

SEO Executive Interview Questions asked at other Companies

Q1. What are the best practices to get more traffic on a website?
View answer (1)

I applied via Campus Placement and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Good and pretty easy to crack

Round 2 - HR 

(2 Questions)

  • Q1. Introduction of self
  • Q2. Details of my project
Round 3 - HR 

(2 Questions)

  • Q1. Why have you chosen IT field
  • Q2. Question on probelm solving

Interview Preparation Tips

Interview preparation tips for other job seekers - None be positive and confident it's easy

Endava Interview FAQs

How many rounds are there in Endava interview?
Endava interview process usually has 2-3 rounds. The most common rounds in the Endava interview process are Technical, One-on-one Round and HR.
How to prepare for Endava interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Endava. The most common topics and skills that interviewers at Endava expect are Automation, Agile, Business Solutions, IT Services and Machine Learning.
What are the top questions asked in Endava interview?

Some of the top questions asked at the Endava interview -

  1. What is No-Sql? In what cases does No-Sql will be us...read more
  2. What are the OOPS concept and explain them with an examp...read more
  3. What is meant by polymorphism? What are the different types of polymorphism and...read more
How long is the Endava interview process?

The duration of Endava interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Endava Interview Process

based on 17 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Endava Reviews and Ratings

based on 270 reviews

3.5/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

3.6

Salary

3.3

Job security

3.2

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 270 Reviews and Ratings
Senior Developer
129 salaries
unlock blur

₹7.6 L/yr - ₹26 L/yr

Technical Lead
127 salaries
unlock blur

₹10 L/yr - ₹31.1 L/yr

Service Delivery Analyst
125 salaries
unlock blur

₹3.6 L/yr - ₹8.5 L/yr

Associate Technical Leader
79 salaries
unlock blur

₹11.9 L/yr - ₹31.1 L/yr

Developer
71 salaries
unlock blur

₹4.9 L/yr - ₹15.5 L/yr

Explore more salaries
Compare Endava with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview