Upload Button Icon Add office photos

Filter interviews by

Eze Software Software Engineer Interview Questions and Answers for Experienced

Updated 8 May 2024

Eze Software Software Engineer Interview Experiences for Experienced

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa, oops, sql, data structures

Round 2 - One-on-one 

(1 Question)

  • Q1. Oops, data structures, sql ,dsa, programming
Round 3 - Technical 

(1 Question)

  • Q1. Opps problem solving, data structures
Round 4 - HR 

(1 Question)

  • Q1. Project explaination

Software Engineer Jobs at Eze Software

View all

Interview questions from similar companies

Interview Questionnaire 

8 Questions

  • Q1. Find a number which occurs odd number of times and all number occurs even number of times
  • Ans. 

    Find an odd occurring number among even occurring numbers.

    • Use XOR operation to cancel out even occurring numbers and get the odd occurring number.

    • Iterate through the array and XOR each element with the result variable.

    • The final result will be the odd occurring number.

  • Answered by AI
  • Q2. Some discussion about my minor project
  • Q3. Spiral order of binary tree and mattrix, print it
  • Ans. 

    Print the spiral order of a binary tree and matrix.

    • For binary tree, use level order traversal and alternate direction for each level.

    • For matrix, use four pointers to traverse in spiral order.

    • Example for binary tree: 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9

    • Example for matrix: 1 2 3 4 -> 8 7 6 5 -> 9 10 11 12 -> 16 15 14 13

  • Answered by AI
  • Q4. Some question about os,dbms
  • Q5. Find pair which have a given sum in a given array
  • Ans. 

    Finding pairs in an array with a given sum.

    • Iterate through the array and for each element, check if the difference between the given sum and the element exists in the array.

    • Use a hash table to store the elements of the array and their indices for faster lookup.

    • If there are multiple pairs with the same sum, return any one of them.

    • If no pair is found, return null or an empty array.

  • Answered by AI
  • Q6. Find total number of k element which have a given avg in a given array in minimum time complexity
  • Ans. 

    Find total number of k element with given avg in an array in minimum time complexity.

    • Use sliding window technique to traverse the array in O(n) time complexity.

    • Maintain a sum variable to keep track of the sum of elements in the window.

    • If the sum of elements in the window is equal to k times the given avg, increment the count.

    • Move the window by subtracting the first element and adding the next element in the array.

  • Answered by AI
  • Q7. Print all elements which in not boundary element in a given binary tree
  • Ans. 

    Printing non-boundary elements of a binary tree

    • Traverse the tree in any order (preorder, inorder, postorder)

    • Check if the current node is not a boundary node (not the first or last node in its level)

    • If it is not a boundary node, print its value

    • Recursively traverse its left and right subtrees

  • Answered by AI
  • Q8. Then some question about process synchronisation,error vs exception,and then 2-3 hr question

Interview Preparation Tips

Round: Test
Experience: practice codes on paper
Tips:

Round: Technical Interview
Experience: very good
Tips: please try to explain each and every question in detail

Round: Technical Interview
Experience: my hr round is not taken by them,and some of face 3rd round ,which is HR
Tips: please prepare all types of problem from geeksforgeeks

Skill Tips: please try to understand every problem from geeksforgeeks
Skills: ds
College Name: NIT Bhopal
Motivation: best work culture,and a lots of learning opportunity in this company,and in every 6 month there is a appraisal

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. More about my technical side.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay connected with good data which may help in current situation for interview process.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Share the link for codesignal

Round 2 - Technical 

(2 Questions)

  • Q1. Java related questions
  • Q2. Based on the resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Current time and their angles
  • Ans. 

    The question is asking for the current time and the angles formed by the hour and minute hands on a clock.

    • The angle between the hour and minute hands of a clock can be calculated using the formula: angle = |(30*hour - (11/2)*minutes)|

    • At 3:00, the angle between the hour and minute hands is 90 degrees.

    • At 6:00, the angle between the hour and minute hands is 180 degrees.

    • At 9:00, the angle between the hour and minute hands

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Didnt qual here btw
Round 3 - HR 

(1 Question)

  • Q1. Didnt qual either btw
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Angular and JavaScript.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Behavioral Questions
  • Q2. CI-CD, Jenkins, AWS
Round 3 - One-on-one 

(1 Question)

  • Q1. Client Interview - Security related.
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 Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There was a coding round and out of 75 students 28 got selected for next round

Round 2 - Technical 

(2 Questions)

  • Q1. Total on resume and basic coding questions like write code for different sorting algorithms.
  • Q2. Explain your project in detail and asking cross questions regarding project.
Round 3 - Technical 

(1 Question)

  • Q1. I was rejected in round 2.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume thoroughly, and have a basic DSA knowledge.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 mins Aptitude Question

Round 2 - Coding Test 

30 mins - 3 Coding Question

Round 3 - Technical 

(2 Questions)

  • Q1. Describe Rest API
  • Ans. 

    Rest API is a set of rules and conventions for building and interacting with web services using HTTP methods.

    • Rest API stands for Representational State Transfer Application Programming Interface.

    • It uses standard HTTP methods like GET, POST, PUT, DELETE to perform CRUD operations.

    • RESTful APIs use URLs to access resources, and return data in JSON or XML format.

    • Stateless communication allows for scalability and flexibilit...

  • Answered by AI
  • Q2. What is various Response code. Diffenrence b/w 200 & 201, 400 & 403
  • Ans. 

    Response codes indicate the status of a HTTP request. 200 & 201 are success codes, while 400 & 403 are client error codes.

    • 200 - OK: Request was successful

    • 201 - Created: Request was successful and a new resource was created

    • 400 - Bad Request: The server cannot process the request due to a client error

    • 403 - Forbidden: The server understood the request, but refuses to authorize it

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test are just basic Array and linkedList question

Round 2 - Technical 

(3 Questions)

  • Q1. Explain 4 pillar of oops
  • Ans. 

    The 4 pillars of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components of an object, protecting its integrity.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects of different classes to be treated as objects of a

  • Answered by AI
  • Q2. Internal working of Hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • Retrieving a value involves hashing the ...

  • Answered by AI
  • Q3. Crud operation implementation
  • Ans. 

    Implementation of Create, Read, Update, and Delete operations in a software system.

    • Use SQL queries for database operations

    • Create separate functions for each operation

    • Handle errors and exceptions properly

    • Test thoroughly to ensure functionality

    • Consider security measures to prevent unauthorized access

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why are you chaning the organisation?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for a new environment to learn and develop new skills

    • Interested in working on different projects and technologies

    • Seeking better career advancement opportunities

    • Wanting to work in a more collaborative team environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium level

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions related to Java, Spring, Rest API

Eze Software Interview FAQs

How many rounds are there in Eze Software Software Engineer interview for experienced candidates?
Eze Software interview process for experienced candidates usually has 4 rounds. The most common rounds in the Eze Software interview process for experienced candidates are Coding Test, One-on-one Round and Technical.
How to prepare for Eze Software Software Engineer interview for experienced candidates?
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 Eze Software. The most common topics and skills that interviewers at Eze Software expect are Healthcare, Recruitment, Scrum, Financial Services and Javascript.
What are the top questions asked in Eze Software Software Engineer interview for experienced candidates?

Some of the top questions asked at the Eze Software Software Engineer interview for experienced candidates -

  1. oops, data structures, sql ,dsa, programm...read more
  2. opps problem solving, data structu...read more
  3. project explainat...read more

Tell us how to improve this page.

Eze Software Software Engineer Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more
Eze Software Software Engineer Salary
based on 48 salaries
₹8 L/yr - ₹24 L/yr
70% more than the average Software Engineer Salary in India
View more details

Eze Software Software Engineer Reviews and Ratings

based on 5 reviews

2.8/5

Rating in categories

2.8

Skill development

2.8

Work-life balance

2.8

Salary

2.8

Job security

2.8

Company culture

1.9

Promotions

2.7

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer

Hubli,

Mangaluru

+3

3-4 Yrs

Not Disclosed

Explore more jobs
Software Engineer
48 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engagement Specialist
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Software Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Eze Software with

ION Group

3.5
Compare

Adenza

3.8
Compare

Charles River Development

3.4
Compare

FIS

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