Upload Button Icon Add office photos

Exela Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Exela Technologies Programmer Analyst Interview Questions and Answers

Updated 26 Oct 2022

6 Interview questions

A Programmer Analyst was asked
Q. How would you find the second highest value in a table?
Ans. 

To find the second highest value in a table, we can use the ORDER BY and LIMIT clauses in SQL.

  • Write a SQL query to select all values from the table in descending order

  • Use the LIMIT clause to select the second row

  • Retrieve the value from the column containing the values

A Programmer Analyst was asked
Q. What is a cursor?
Ans. 

A cursor is a database object used to manipulate data in a result set.

  • A cursor allows you to iterate through a result set one row at a time.

  • It can be used to update or delete specific rows in a result set.

  • There are two types of cursors: static and dynamic.

  • Example: DECLARE cursor_name CURSOR FOR SELECT * FROM table_name;

  • Example: OPEN cursor_name; FETCH NEXT FROM cursor_name INTO variable_name;

Programmer Analyst Interview Questions Asked at Other Companies

asked in Cognizant
Q1. 1 Tell me about your self 2 What is c# 3 What is oops concept 4 W ... read more
asked in Cognizant
Q2. What is stack? How do you convert a queue to stack?
asked in Cognizant
Q3. Given two tables, one with 20 student records and another with 10 ... read more
asked in Cognizant
Q4. What is the difference between a structure and a class?
Q5. What is SQL? define ddl? Why should we hire you?
A Programmer Analyst was asked
Q. What are the different types of joins?
Ans. 

Joins are used to combine data from two or more tables based on a related column between them.

  • Types of joins include inner join, left join, right join, and full outer join.

  • Inner join returns only the matching rows from both tables.

  • Left join returns all rows from the left table and matching rows from the right table.

  • Right join returns all rows from the right table and matching rows from the left table.

  • Full outer jo...

A Programmer Analyst was asked
Q. What is SQL?
Ans. 

SQL is a programming language used for managing and manipulating relational databases.

  • SQL stands for Structured Query Language.

  • It is used to communicate with and manipulate databases.

  • SQL can be used to create, modify, and retrieve data from databases.

  • Common SQL commands include SELECT, INSERT, UPDATE, and DELETE.

  • SQL is widely used in web development and data analysis.

What people are saying about Exela Technologies

View All
a mis executive
1d
Stepping forward-need advice
Hi Folks,🫡 I have 2.8 years of experience in MIS. Despite working 12-hour days, I received only a ₹3K hike. After an internal transfer, I replaced an MIS who earned ₹40K+, but my salary remained ₹24K. I also took on managerial responsibilities and handled 1.5 FTEs’ work after the ASM resigned >without any additional compensation.😮‍💨 I’ve now received a better opportunity with a 30% hike and a promotion to Sr. Executive. I informed my manager, but both the manager and the boss are asking me to serve a 2-month notice, even though the HR policy mandates only 15 days. My offer is based on a 15-day notice, and extending it could cost me the role. Currently, I’m on my 6th notice day and still haven’t been assigned any resources for KT or handover. Despite this, I’m committed to a smooth transition. However, they are emotionally pressuring me, saying I’m accountable for the transition and should take full responsibility. Still, I stand firm in my decision to move forward 🫱🏻‍🫲🏼
Got a question about Exela Technologies?
Ask anonymously on communities.
A Programmer Analyst was asked
Q. What is SQL? What is ddl? What is dml?
Ans. 

SQL is a programming language used to manage and manipulate relational databases.

  • DDL stands for Data Definition Language and is used to define the structure of a database.

  • DML stands for Data Manipulation Language and is used to manipulate data within a database.

  • Examples of DDL commands include CREATE, ALTER, and DROP.

  • Examples of DML commands include SELECT, INSERT, UPDATE, and DELETE.

A Programmer Analyst was asked
Q. What is SQL? define ddl? Why should we hire you?
Ans. 

SQL is a programming language used to manage and manipulate relational databases.

  • SQL stands for Structured Query Language.

  • It is used to create, modify, and query databases.

  • DDL (Data Definition Language) is a subset of SQL used to define the structure of a database.

  • DDL commands include CREATE, ALTER, and DROP.

  • I should be hired because of my experience and skills in SQL programming and database management.

Exela Technologies Programmer Analyst Interview Experiences

2 interviews found

I applied via Recruitment Consulltant and was interviewed in Apr 2022. 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 

(2 Questions)

  • Q1. What is SQL? What is ddl? What is dml?
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases.

    • DDL stands for Data Definition Language and is used to define the structure of a database.

    • DML stands for Data Manipulation Language and is used to manipulate data within a database.

    • Examples of DDL commands include CREATE, ALTER, and DROP.

    • Examples of DML commands include SELECT, INSERT, UPDATE, and DELETE.

  • Answered by AI
  • Q2. What is SQL? define ddl? Why should we hire you?
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases.

    • SQL stands for Structured Query Language.

    • It is used to create, modify, and query databases.

    • DDL (Data Definition Language) is a subset of SQL used to define the structure of a database.

    • DDL commands include CREATE, ALTER, and DROP.

    • I should be hired because of my experience and skills in SQL programming and database management.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hey guys just prepare SQL questions they job doesn't require any knowledge except process knowledge which will be given by team after joining

Skills evaluated in this interview

I applied via Referral and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is sql ?
  • Ans. 

    SQL is a programming language used for managing and manipulating relational databases.

    • SQL stands for Structured Query Language.

    • It is used to communicate with and manipulate databases.

    • SQL can be used to create, modify, and retrieve data from databases.

    • Common SQL commands include SELECT, INSERT, UPDATE, and DELETE.

    • SQL is widely used in web development and data analysis.

  • Answered by AI
  • Q2. Type of joins .?
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column between them.

    • Types of joins include inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all rows from the left table and matching rows from the right table.

    • Right join returns all rows from the right table and matching rows from the left table.

    • Full outer join re...

  • Answered by AI
  • Q3. What is cursor .?
  • Ans. 

    A cursor is a database object used to manipulate data in a result set.

    • A cursor allows you to iterate through a result set one row at a time.

    • It can be used to update or delete specific rows in a result set.

    • There are two types of cursors: static and dynamic.

    • Example: DECLARE cursor_name CURSOR FOR SELECT * FROM table_name;

    • Example: OPEN cursor_name; FETCH NEXT FROM cursor_name INTO variable_name;

  • Answered by AI
  • Q4. Find the second highest value in table
  • Ans. 

    To find the second highest value in a table, we can use the ORDER BY and LIMIT clauses in SQL.

    • Write a SQL query to select all values from the table in descending order

    • Use the LIMIT clause to select the second row

    • Retrieve the value from the column containing the values

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic sql question

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is stock split and corporate action types
  • Ans. 

    Stock split is a corporate action where a company increases the number of its outstanding shares by dividing each share into multiple shares.

    • Stock split is done to make shares more affordable for investors and increase liquidity.

    • There are different types of stock splits such as 2-for-1, 3-for-1, etc.

    • Other types of corporate actions include mergers, acquisitions, spin-offs, and dividend payments.

    • Corporate actions can af...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through Corporate action

I applied via Walk-in and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. OOPS Concepts, collections framework, memory management, exception handling, java 8 features, spring framework
Round 2 - One-on-one 

(1 Question)

  • Q1. System design questions, spring framework, project roles and responsibilities, scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiation, reason for leaving organization

Interview Preparation Tips

Interview preparation tips for other job seekers - Concept application knowledge is more helpful than answers to questions

What people are saying about Exela Technologies

View All
a mis executive
1d
Stepping forward-need advice
Hi Folks,🫡 I have 2.8 years of experience in MIS. Despite working 12-hour days, I received only a ₹3K hike. After an internal transfer, I replaced an MIS who earned ₹40K+, but my salary remained ₹24K. I also took on managerial responsibilities and handled 1.5 FTEs’ work after the ASM resigned >without any additional compensation.😮‍💨 I’ve now received a better opportunity with a 30% hike and a promotion to Sr. Executive. I informed my manager, but both the manager and the boss are asking me to serve a 2-month notice, even though the HR policy mandates only 15 days. My offer is based on a 15-day notice, and extending it could cost me the role. Currently, I’m on my 6th notice day and still haven’t been assigned any resources for KT or handover. Despite this, I’m committed to a smooth transition. However, they are emotionally pressuring me, saying I’m accountable for the transition and should take full responsibility. Still, I stand firm in my decision to move forward 🫱🏻‍🫲🏼
Got a question about Exela Technologies?
Ask anonymously on communities.

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core Java Micro services Spring boot AWS CI/CD Tools Programing questions etc.,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong at basics

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself?
  • Q2. Do you know anything about DBMS? Where is it used?
  • Ans. 

    DBMS stands for Database Management System. It is used to manage and organize data in a structured manner.

    • DBMS is used in various industries such as healthcare, finance, education, and more.

    • It helps in creating, modifying, and deleting data in a database.

    • DBMS provides security features to protect data from unauthorized access.

    • Examples of DBMS include MySQL, Oracle, Microsoft SQL Server, and PostgreSQL.

  • Answered by AI
  • Q3. Practical example of object
  • Ans. 

    An object is a self-contained entity that contains data and behavior.

    • Objects are instances of classes

    • They have attributes (data) and methods (behavior)

    • Objects can interact with each other through method calls

    • Example: A car object has attributes like color, make, and model, and methods like start and stop

  • Answered by AI
  • Q4. Practical implementation of sorting
  • Ans. 

    Sorting is the process of arranging data in a particular order.

    • Sorting can be done in ascending or descending order.

    • Common sorting algorithms include bubble sort, insertion sort, and quicksort.

    • Sorting can be done on various data types, including strings, numbers, and objects.

    • Sorting can be done using built-in functions in programming languages such as sort() in JavaScript.

    • Sorting can be optimized for performance by cho...

  • Answered by AI
  • Q5. Difference between C and C++
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance than C.

    • C++ has a larger standard library than C.

    • C++ allows function overloading while C does not.

    • C++ supports exception handling while C does not.

  • Answered by AI
  • Q6. Tell me about yourself
  • Q7. Will your family allow you to move to Hyderabad
  • Ans. 

    Yes, my family is supportive of my career and relocation decisions.

    • My family understands the importance of career growth and is supportive of my decisions.

    • We have discussed the possibility of relocation and they are willing to make the necessary adjustments.

    • They trust my judgment and believe that this move will be beneficial for my career.

    • We have also considered the quality of life in Hyderabad and believe that it will...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Level was pretty high in case of Quant. You not only need a lot of practice but also practice of some really good questions.
Other than quant all the other sections are easy and direct.
Duration: 60 minutes
Total Questions: 45

Round: Group Discussion
Experience: They give 10 mins to think about the topic and 20 mins for discussion. Main purpose is to check your communication skills so keep on discussing . Even if you can't think of any new point repeat your points
Duration: 20 minutes

Round: Technical Interview
Experience: There were many other questions other than this but what they were emphasizing was whether you have done any practical implementation of IT or the coding skills. Tell them about your projects and how you implemented the coding part.They are much interested in logic than syntax.
Since I'm from ECE these were the main things I talked about.

Round: HR Interview
Experience: It was much of an interactive session.They again asked about projects-nothing technical only some basic idea. Lasted hardly 10 mins.

Round: Other Interview
Experience: In this round they mainly explained the salary structure. This one too was of 10 mins.

General Tips: Even if you don't have excellent coding knowledge do appear for the company. They are not looking for same qualities in each candidate. You should be willing enough to learn.
Skills: Aptitude, Communication Skills, Basic Technical Knowledge-mainly emphasized on the implementation part.
College Name: NIT Bhopal
Motivation: The company dates back to 1983 with locations in almost every US state. It is the 43rd company in Fortune 100 US companies. You have options to switch within the departments. Other than this the compensation is 6lpa.

Skills evaluated in this interview

I appeared for an interview in Jun 2017.

Interview Questionnaire 

1 Question

  • Q1. Questions related to core java, advanced java, programs,

Interview Preparation Tips

Round: Technical + HR Interview
Experience: Previous work experience scenarios based questions

Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Exam was conducted on programmes. 10 questions were asked

I applied via LinkedIn and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics Of JS

I applied via Naukri.com and was interviewed before Feb 2021. 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 

(1 Question)

  • Q1. About technical what your role is

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing all good, but poor team management

Exela Technologies Interview FAQs

How many rounds are there in Exela Technologies Programmer Analyst interview?
Exela Technologies interview process usually has 2 rounds. The most common rounds in the Exela Technologies interview process are Resume Shortlist and Technical.
How to prepare for Exela Technologies Programmer Analyst 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 Data Processing, Education, JSON, Linux and Perl.
What are the top questions asked in Exela Technologies Programmer Analyst interview?

Some of the top questions asked at the Exela Technologies Programmer Analyst interview -

  1. What is SQL? define ddl? Why should we hire y...read more
  2. What is sq...read more
  3. What is SQL? What is ddl? What is d...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

EPAM Systems Interview Questions
3.7
 • 570 Interviews
Synechron Interview Questions
3.5
 • 379 Interviews
Movate Interview Questions
3.3
 • 272 Interviews
Globant Interview Questions
3.7
 • 184 Interviews
SS&C TECHNOLOGIES Interview Questions
3.3
 • 184 Interviews
ThoughtWorks Interview Questions
3.9
 • 158 Interviews
Luxoft Interview Questions
3.6
 • 128 Interviews
TEKsystems Interview Questions
3.3
 • 124 Interviews
View all
Exela Technologies Programmer Analyst Salary
based on 158 salaries
₹2 L/yr - ₹4.8 L/yr
43% less than the average Programmer Analyst Salary in India
View more details

Exela Technologies Programmer Analyst Reviews and Ratings

based on 29 reviews

2.1/5

Rating in categories

1.9

Skill development

1.8

Work-life balance

2.1

Salary

2.6

Job security

2.0

Company culture

1.4

Promotions

1.9

Work satisfaction

Explore 29 Reviews and Ratings
Processor
433 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Software Engineer
426 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Data Entry Operator
413 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Test Analyst
212 salaries
unlock blur

₹3.8 L/yr - ₹7.8 L/yr

Senior Software Engineer
180 salaries
unlock blur

₹7.7 L/yr - ₹13.7 L/yr

Explore more salaries
Compare Exela Technologies with

Synechron

3.5
Compare

Movate

3.3
Compare

Sopra Steria

3.8
Compare

NCR Corporation

3.7
Compare
write
Share an Interview