Upload Button Icon Add office photos

Exela Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Exela Technologies Software Engineer Interview Questions and Answers

Updated 11 Feb 2023

Exela Technologies Software Engineer Interview Experiences

2 interviews found

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

I applied via Naukri.com and was interviewed before Feb 2022. There were 5 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 - Coding Test 

Duration: 45 mins, Topics: Technology

Round 3 - One-on-one 

(1 Question)

  • Q1. Focused on technology applied for
Round 4 - One-on-one 

(1 Question)

  • Q1. More into technology applied for
Round 5 - HR 

(1 Question)

  • Q1. More into HR related interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on the technology applied for, focus more on the technology

I applied via Company Website and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Convey your answers

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

Software Engineer Interview Questions & Answers

Trimble user image Saminathan Alagu Sundaram

posted on 25 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Based on DSA, OOPS
Round 2 - Technical 

(1 Question)

  • Q1. Based on Projects in Resume
Round 3 - Technical 

(1 Question)

  • Q1. Technical Discussion about earlier projects
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Dependency property
  • Q2. Oops concepts, SOLID pricipals
Round 2 - Technical 

(2 Questions)

  • Q1. Write a code to find words in brackets and add numbers where u find each unique word
  • Q2. Design patterns, dependency injection

Interview Preparation Tips

Interview preparation tips for other job seekers - Long process, recruiter did not even call to tell that you have cleared the interview. No response after a successful 2nd round. Have to follow op with recruiter multiple times.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Job Fair and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Dsa questions related to project
  • Q2. Project based q and a
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Flatten a binary tree.

Round 2 - Technical 

(1 Question)

  • Q1. Project discussion, tech stack used, problems faced etc .

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep hustling.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Basics of Java OOPS
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. C++ fundamental
  • Q2. Reverse linked list
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write code of palindrome
  • Ans. 

    Code to check if a given string is a palindrome or not.

    • Create a function that takes a string as input

    • Remove all non-alphanumeric characters and convert to lowercase

    • Compare the original string with its reverse to check for palindrome

  • Answered by AI
  • Q2. How to pass data in angular from component to component
  • Ans. 

    Data can be passed in Angular from component to component using input properties, output properties, services, and state management libraries like NgRx.

    • Use @Input decorator to pass data from parent to child component

    • Use @Output decorator to emit events from child to parent component

    • Use services to share data between components

    • Use state management libraries like NgRx for complex data sharing scenarios

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

Exela Technologies Interview FAQs

How many rounds are there in Exela Technologies Software Engineer interview?
Exela Technologies interview process usually has 5 rounds. The most common rounds in the Exela Technologies interview process are One-on-one Round, Resume Shortlist and Coding Test.
How to prepare for Exela Technologies 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 Exela Technologies. The most common topics and skills that interviewers at Exela Technologies expect are SQL, .NET Framework, ASP.Net, C# and ADO.Net.
What are the top questions asked in Exela Technologies Software Engineer interview?

Some of the top questions asked at the Exela Technologies Software Engineer interview -

  1. Focused on technology applied ...read more
  2. More into technology applied ...read more
  3. More into HR related interv...read more

Tell us how to improve this page.

Exela Technologies Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Exela Technologies Software Engineer Salary
based on 448 salaries
₹2.4 L/yr - ₹10 L/yr
27% less than the average Software Engineer Salary in India
View more details

Exela Technologies Software Engineer Reviews and Ratings

based on 45 reviews

2.9/5

Rating in categories

2.3

Skill development

2.9

Work-life balance

2.4

Salary

2.7

Job security

2.5

Company culture

2.0

Promotions

2.4

Work satisfaction

Explore 45 Reviews and Ratings
Software Engineer
448 salaries
unlock blur

₹2.3 L/yr - ₹10 L/yr

Data Entry Operator
438 salaries
unlock blur

₹0.8 L/yr - ₹3 L/yr

Processor
420 salaries
unlock blur

₹0.9 L/yr - ₹3.2 L/yr

Senior Software Engineer
185 salaries
unlock blur

₹4 L/yr - ₹16.7 L/yr

Test Analyst
183 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Explore more salaries
Compare Exela Technologies with

WNS

3.4
Compare

Quess

3.9
Compare

Firstsource Solutions

3.7
Compare

HGS

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