Upload Button Icon Add office photos
Engaged Employer

i

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

Encora Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Encora Senior Software Engineer Interview Questions, Process, and Tips

Updated 8 Nov 2024

Top Encora Senior Software Engineer Interview Questions and Answers

View all 8 questions

Encora Senior Software Engineer Interview Experiences

9 interviews found

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

I applied via Company Website and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Prepare well with basic and advanced JavaScript concepts and logical questions. They will ask you to implement all the topics using code.

Round 2 - Technical 

(2 Questions)

  • Q1. Explain your previous project and work experience.
  • Q2. Provided a use case to demonstrate your front-end skills and system design knowledge.
Round 3 - One-on-one 

(1 Question)

  • Q1. Questions related to domain related.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the core concepts and basic DSA questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Whats middlware and how to write custom middlewares in Django
  • Ans. 

    Middleware in Django is a framework of hooks into Django's request/response processing. Custom middlewares can be written to perform additional functions.

    • Middleware is a framework of hooks into Django's request/response processing

    • Custom middlewares can be written by creating a class with methods like process_request, process_response, etc.

    • Middleware classes should be defined in a middleware.py file in the Django app

    • Mid...

  • Answered by AI
  • Q2. Asked SQL join query
Round 2 - Technical 

(2 Questions)

  • Q1. Some intermmediate coding questions
  • Q2. CORS error domain related questions
Round 3 - HR 

(2 Questions)

  • Q1. Offer related discussion
  • Q2. Some general questions about hobbies and all

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Hibernate One to Many Relationships
  • Ans. 

    Hibernate allows mapping one-to-many relationships between entities using annotations or XML configuration.

    • Use @OneToMany annotation in the parent entity to define the relationship

    • Use @JoinColumn annotation to specify the foreign key column in the child entity

    • Use mappedBy attribute in @OneToMany annotation to specify the field in the child entity that owns the relationship

  • Answered by AI
  • Q2. Design Pattern - Factory, Singleton
  • Q3. Coding Question
  • Q4. SQL Query Optimization

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic python questions and some questions related to docker and k8s.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How you can manage disputes in work
  • Ans. 

    Disputes can be managed by promoting open communication, active listening, seeking common ground, and involving a mediator if necessary.

    • Promote open communication to address issues early on

    • Practice active listening to understand all perspectives

    • Seek common ground and compromise to find a resolution

    • Involve a mediator if necessary to facilitate discussions

  • Answered by AI
  • Q2. What you will do in case of deployment conflicts
  • Ans. 

    I will communicate with the team to identify the root cause of the conflicts and work together to resolve them efficiently.

    • Communicate with team members to understand the conflicting changes

    • Analyze the changes made by each team member to identify the root cause

    • Collaborate with team to come up with a resolution plan

    • Implement the resolution plan and ensure smooth deployment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the basics well in which tech you are working and try to brush up the deployment skills.

Encora interview questions for designations

 Senior Associate Software Engineer

 (1)

 Senior Software Engineer 2

 (1)

 Software Engineer

 (4)

 Junior Software Engineer

 (2)

 Software QA Engineer

 (1)

 Software Development Engineer

 (1)

 Senior Support Engineer

 (1)

 Senior QA Engineer

 (1)

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

General aptitude questions in quants, communication and logical

Round 2 - Technical 

(2 Questions)

  • Q1. Exception handling
  • Q2. Multi threading

Get interview-ready with Top Encora Interview Questions

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

I applied via Naukri.com and was interviewed in Feb 2023. There were 2 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 - Technical 

(5 Questions)

  • Q1. Tell me about your project in short.
  • Q2. Tell me about oops concept
  • Ans. 

    OOPs is a programming paradigm based on the concept of objects that interact with each other.

    • OOPs stands for Object-Oriented Programming.

    • It focuses on creating objects that have properties and methods to interact with other objects.

    • Encapsulation, inheritance, and polymorphism are the three main pillars of OOPs.

    • Encapsulation is the process of hiding the internal details of an object from the outside world.

    • Inheritance al...

  • Answered by AI
  • Q3. What is difference between interface and abstract class
  • Ans. 

    Interface defines only method signatures while abstract class can have both method signatures and implementation.

    • An interface can be implemented by multiple classes while an abstract class can only be extended by one class.

    • An abstract class can have constructors while an interface cannot.

    • An abstract class can have non-abstract methods while an interface can only have abstract methods.

    • An abstract class can have instance...

  • Answered by AI
  • Q4. What is inheritance ?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is derived from an existing class.

    • It allows the new class to inherit the properties and methods of the existing class.

    • The existing class is called the parent or base class, and the new class is called the child or derived class.

    • The child class can add new properties and methods or override the ones inherited from the parent class.

    • Inheritance pr...

  • Answered by AI
  • Q5. What is difference between dot net and dot net core?
  • Ans. 

    Dot net is a framework while dot net core is a cross-platform, open-source framework.

    • Dot net is Windows-only while dot net core is cross-platform.

    • Dot net core is open-source while dot net is not.

    • Dot net core is modular and lightweight while dot net is monolithic.

    • Dot net core supports microservices architecture while dot net does not.

    • Dot net core has better performance and scalability than dot net.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared with oops and minimal answer they are expecting
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. What is difference between .Net and .Net core?
  • Ans. 

    The main difference between .Net and .Net Core is that .Net is a framework while .Net Core is a cross-platform, open-source framework.

    • Net Core is modular and lightweight compared to .Net

    • .Net Core supports cross-platform development while .Net is limited to Windows

    • .Net Core has better performance and scalability than .Net

    • Both frameworks have different APIs and libraries

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. DSA Question was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy to crack. Don't worry. Go ahead. GIve the interview

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions about my technical competency and my aspirations on learning new technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - We all are just trying to know everything, so just focus what you have done and what you know already, be clear about your basics.

I applied via LinkedIn and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. I was asked about all the technical questions in and out respective to the language they are looking for, mine Golang.
  • Q2. To check the experience, there is a high chance of shooting questions regarding the packages and concepts you have worked on in real-time.
  • Q3. Always ready to do programming any time, for sure there will be a coding session which will be on spot.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't over mention your skill in the resume unless you have good knowledge about it. Be ready to write a code anytime with the given logic.

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is the internal working of a hashmap?
  • Q2. Design a Least Recently Used (LRU) cache.
Round 2 - Technical 

(2 Questions)

  • Q1. What are the SOLID principles in software engineering?
  • Q2. What design patterns have you worked with?

Encora Interview FAQs

How many rounds are there in Encora Senior Software Engineer interview?
Encora interview process usually has 2-3 rounds. The most common rounds in the Encora interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Encora Senior Software Engineer 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 Encora. The most common topics and skills that interviewers at Encora expect are Java, Agile, J2Ee, JIRA and Web Services.
What are the top questions asked in Encora Senior Software Engineer interview?

Some of the top questions asked at the Encora Senior Software Engineer interview -

  1. What is difference between dot net and dot net co...read more
  2. What is difference between interface and abstract cl...read more
  3. Whats middlware and how to write custom middlewares in Dja...read more

Tell us how to improve this page.

Encora Senior Software Engineer Interview Process

based on 8 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
Encora Senior Software Engineer Salary
based on 777 salaries
₹10 L/yr - ₹36 L/yr
40% more than the average Senior Software Engineer Salary in India
View more details

Encora Senior Software Engineer Reviews and Ratings

based on 92 reviews

3.6/5

Rating in categories

3.3

Skill development

3.7

Work-life balance

3.5

Salary

3.0

Job security

3.5

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 92 Reviews and Ratings
Senior Software Engineer
777 salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Technical Lead
762 salaries
unlock blur

₹14.9 L/yr - ₹46 L/yr

Software Engineer
280 salaries
unlock blur

₹4.5 L/yr - ₹17 L/yr

Software Developer
147 salaries
unlock blur

₹3 L/yr - ₹11.6 L/yr

QA Lead
129 salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Explore more salaries
Compare Encora 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