Upload Button Icon Add office photos
Engaged Employer

i

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

Exusia Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Exusia Interview Questions and Answers

Updated 6 Jun 2025
Popular Designations

8 Interview questions

A QA Analyst was asked 2w ago
Q. What are your future career plans?
Ans. 

I aim to enhance my QA skills, contribute to team success, and embrace new technologies for better testing practices.

  • Pursue certifications in QA methodologies, such as ISTQB, to deepen my knowledge.

  • Stay updated with automation tools like Selenium or Cypress to improve testing efficiency.

  • Engage in continuous learning through workshops and online courses to adapt to industry changes.

  • Collaborate with cross-functional...

View all QA Analyst interview questions
A Senior Analyst was asked 7mo ago
Q. How do you delete files older than 10 days using Unix?
Ans. 

Use find command with -mtime option to delete files older than 10 days.

  • Use find command with -mtime option to search for files older than 10 days.

  • Combine find command with -delete option to delete the files found.

View all Senior Analyst interview questions
A Senior Analyst was asked 7mo ago
Q. How would you delete files with 0KB size from a directory using Unix?
Ans. 

Use find command to locate files with 0KB size and delete them using the rm command.

  • Use find command with -size 0 option to locate files with 0KB size in a directory

  • Pipe the output of find command to rm command to delete the files

  • Example: find /path/to/directory -type f -size 0 -exec rm {} \;

View all Senior Analyst interview questions
A Senior Analyst was asked 7mo ago
Q. What is the difference between Lookup and Join components in Ab Initio, and when should each be used?
Ans. 

Lookup retrieves data from a reference dataset, while join combines datasets based on a common key.

  • Lookup is used for fetching a single value or a small set of values from a reference dataset.

  • Join combines two datasets based on a common key, producing a new dataset with combined records.

  • Use Lookup when you need to enrich data with additional attributes from a reference table.

  • Use Join when you need to merge two dat...

View all Senior Analyst interview questions
A Senior Python Developer was asked
Q. How can the current project be optimized?
Ans. 

The current project can be optimized by improving code efficiency and reducing redundancy.

  • Identify and remove any unnecessary code or functions

  • Use built-in Python functions and libraries to reduce code complexity

  • Implement caching or memoization to reduce computation time

  • Optimize database queries and indexing for faster data retrieval

  • Use profiling tools to identify and fix performance bottlenecks

View all Senior Python Developer interview questions
A Senior Analyst was asked 7mo ago
Q. Why not to use lookup for join, where we can not use join. Disadvantage of using sort component.
Ans. 

Using lookup for join can be inefficient and lead to performance issues. Sort component can be slow and resource-intensive.

  • Lookup for join can be inefficient for large datasets as it requires scanning the entire dataset for each lookup value.

  • Join is more optimized for joining datasets based on a common key, while lookup is better suited for smaller reference tables.

  • Sort component can be slow and resource-intensive...

View all Senior Analyst interview questions
A Senior Analyst was asked 7mo ago
Q. Full working of different partition components, multifiles, checkpoints and phases.
Ans. 

Partition components, multifiles, checkpoints, and phases in data processing.

  • Partition components refer to dividing data into smaller chunks for processing efficiency.

  • Multifiles are multiple files used to store data during processing.

  • Checkpoints are markers set during processing to save progress and enable restart from a specific point.

  • Phases represent different stages of data processing workflow.

  • Example: In a Map...

View all Senior Analyst interview questions
Are these interview questions helpful?
A Consultant was asked 9mo ago
Q. Abinito components usage
Ans. 

Abinito components are used in ETL processes for data integration and transformation.

  • Abinito components are used in ETL (Extract, Transform, Load) processes for data integration and transformation.

  • Some commonly used Abinito components include Input Table, Output Table, Join, Partition, Sort, Filter, and Lookup.

  • Abinito provides a graphical interface for designing ETL processes using these components.

  • Abinito compone...

View all Consultant interview questions

Exusia Interview Experiences

23 interviews found

Consultant Interview Questions & Answers

user image Anonymous

posted on 9 Jan 2025

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

(2 Questions)

  • Q1. Difference between OLAP, OLTP systems
  • Ans. 

    OLAP is for analyzing data, OLTP is for transaction processing.

    • OLAP stands for Online Analytical Processing, used for complex queries and data analysis.

    • OLTP stands for Online Transaction Processing, used for routine transactions like insert, update, delete.

    • OLAP systems are designed for read-heavy workloads, while OLTP systems are designed for write-heavy workloads.

    • OLAP systems typically have a denormalized schema for f...

  • Answered by AI
  • Q2. Difference between star and snowflake schema
  • Ans. 

    Star schema has a single centralized fact table with denormalized dimensions, while snowflake schema has normalized dimensions with multiple related tables.

    • Star schema is easier to understand and query due to denormalized structure.

    • Snowflake schema saves storage space by normalizing dimensions into separate tables.

    • Star schema is more suitable for data warehousing and reporting purposes.

    • Snowflake schema is more normaliz...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between Lookup and join, where we should use which one in Ab Initio.
  • Ans. 

    Lookup retrieves data from a reference dataset, while join combines datasets based on a common key.

    • Lookup is used for fetching a single value or a small set of values from a reference dataset.

    • Join combines two datasets based on a common key, producing a new dataset with combined records.

    • Use Lookup when you need to enrich data with additional attributes from a reference table.

    • Use Join when you need to merge two datasets...

  • Answered by AI
  • Q2. Ab Initio Scenerio Based questions.
  • Q3. Delete files with 0KB size from a directory. (Unix)
  • Ans. 

    Use find command to locate files with 0KB size and delete them using the rm command.

    • Use find command with -size 0 option to locate files with 0KB size in a directory

    • Pipe the output of find command to rm command to delete the files

    • Example: find /path/to/directory -type f -size 0 -exec rm {} \;

  • Answered by AI
  • Q4. Delete 10 days older files. (unix)
  • Ans. 

    Use find command with -mtime option to delete files older than 10 days.

    • Use find command with -mtime option to search for files older than 10 days.

    • Combine find command with -delete option to delete the files found.

  • Answered by AI
  • Q5. Get the second highest salary. (SQL)
Round 2 - Technical 

(4 Questions)

  • Q1. Ab initio scenerio based questions. Question on the project.
  • Q2. Questions based on different components like Roll up, scan, reformat, join, etc. (Ab Initio)
  • Q3. Questions based on sed, awk, and grep commands. (UNIX)
  • Q4. Questions on Window function. (SQL)
Round 3 - Behavioral 

(4 Questions)

  • Q1. In-depth discussion on project. Components used there and the process of the graph.
  • Q2. Questions on Continuous Flow, conduct>IT.
  • Q3. Full working of different partition components, multifiles, checkpoints and phases.
  • Ans. 

    Partition components, multifiles, checkpoints, and phases in data processing.

    • Partition components refer to dividing data into smaller chunks for processing efficiency.

    • Multifiles are multiple files used to store data during processing.

    • Checkpoints are markers set during processing to save progress and enable restart from a specific point.

    • Phases represent different stages of data processing workflow.

    • Example: In a MapReduc...

  • Answered by AI
  • Q4. Why not to use lookup for join, where we can not use join. Disadvantage of using sort component.
  • Ans. 

    Using lookup for join can be inefficient and lead to performance issues. Sort component can be slow and resource-intensive.

    • Lookup for join can be inefficient for large datasets as it requires scanning the entire dataset for each lookup value.

    • Join is more optimized for joining datasets based on a common key, while lookup is better suited for smaller reference tables.

    • Sort component can be slow and resource-intensive, esp...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why you want to join Exusia. Reason for the job change.
  • Q2. Salary expectations and document submission.

Interview Preparation Tips

Topics to prepare for Exusia Senior Analyst interview:
  • Ab Initio
  • Unix
  • SQL
Interview preparation tips for other job seekers - Prepare Ab initio scenerio based questions, and know how and where to use a component considering its pros and cons. Prepare basic Unix commands and grep, awk, sed, and find commands. Prepare sql with window functions.

Skills evaluated in this interview

Consultant Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2024

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

(2 Questions)

  • Q1. Abinito components usage
  • Ans. 

    Abinito components are used in ETL processes for data integration and transformation.

    • Abinito components are used in ETL (Extract, Transform, Load) processes for data integration and transformation.

    • Some commonly used Abinito components include Input Table, Output Table, Join, Partition, Sort, Filter, and Lookup.

    • Abinito provides a graphical interface for designing ETL processes using these components.

    • Abinito components c...

  • Answered by AI
  • Q2. Air commands and Multi file system
Round 2 - Technical 

(2 Questions)

  • Q1. Project related details and questions
  • Q2. Experience related to background
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations

Skills evaluated in this interview

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

I appeared for an interview in Oct 2024.

Round 1 - Coding Test 

Python coding, and sql

Round 2 - Technical 

(3 Questions)

  • Q1. Spark, python, sql
  • Q2. Spark architechture
  • Q3. Python rcoding question

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2024

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

(2 Questions)

  • Q1. What is Data Profiling
  • Ans. 

    Data profiling is the process of analyzing and summarizing data to gain insights into its quality, structure, and content.

    • Data profiling involves examining data to understand its characteristics, such as data types, patterns, and relationships.

    • It helps in identifying data quality issues, such as missing values, outliers, and inconsistencies.

    • Data profiling can also reveal data distribution, frequency of values, and data...

  • Answered by AI
  • Q2. What is data modeling and it's importance
  • Ans. 

    Data modeling is the process of creating a visual representation of data structures and relationships to help understand and analyze data.

    • Data modeling helps in organizing and structuring data in a way that is easy to understand and analyze.

    • It helps in identifying relationships between different data elements.

    • Data modeling is important for designing databases, developing data warehouses, and improving data quality.

    • Exam...

  • Answered by AI

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Spark related question
  • Q2. Python coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Spark related questions
Interview experience
4
Good
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on the Technical Capabilities
Round 2 - Technical 

(1 Question)

  • Q1. TECHNICAL Features
Round 3 - Technical 

(1 Question)

  • Q1. Technical and Managerial Skills

Interview Preparation Tips

Interview preparation tips for other job seekers - The process lasted for couple of months. The HR made final offer ,however offer was later redacted citing that the requirement is closed.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How can you handle the task?
  • Ans. 

    I handle tasks by breaking them down into smaller steps, setting priorities, and utilizing time management techniques.

    • Break down the task into smaller steps

    • Set priorities based on deadlines and importance

    • Utilize time management techniques such as Pomodoro method or Eisenhower matrix

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is your weakness?
  • Ans. 

    I tend to be overly detail-oriented, which can slow down my workflow but ensures high-quality outcomes.

    • I often spend extra time on data validation to ensure accuracy, which can delay project timelines.

    • In my previous role, I missed a deadline because I was perfecting a report instead of submitting a draft.

    • I am learning to balance thoroughness with efficiency by setting time limits for tasks.

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 7 Mar 2024

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

I appeared for an interview in Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Related to ETL, Data model, data warehouse

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Exusia?
Ask anonymously on communities.

Exusia Interview FAQs

How many rounds are there in Exusia interview?
Exusia interview process usually has 2-3 rounds. The most common rounds in the Exusia interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Exusia 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 Exusia. The most common topics and skills that interviewers at Exusia expect are Healthcare, HTTP, Analytics, IT Services and Data Management.
What are the top questions asked in Exusia interview?

Some of the top questions asked at the Exusia interview -

  1. Difference between Lookup and join, where we should use which one in Ab Init...read more
  2. Why not to use lookup for join, where we can not use join. Disadvantage of usi...read more
  3. Delete files with 0KB size from a directory. (Un...read more
How long is the Exusia interview process?

The duration of Exusia interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 19 interview experiences

Difficulty level

Moderate 64%
Hard 36%

Duration

Less than 2 weeks 36%
2-4 weeks 45%
4-6 weeks 9%
More than 8 weeks 9%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
ConsultAdd Interview Questions
3.6
 • 37 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
Systems Plus Interview Questions
4.2
 • 30 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
View all

Exusia Reviews and Ratings

based on 233 reviews

3.8/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.8

Salary

3.8

Job security

3.8

Company culture

3.7

Promotions

3.8

Work satisfaction

Explore 233 Reviews and Ratings
Senior Consultant
137 salaries
unlock blur

₹12 L/yr - ₹35 L/yr

Senior Analyst
105 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Consultant
92 salaries
unlock blur

₹9 L/yr - ₹22 L/yr

Management Consultant
79 salaries
unlock blur

₹23 L/yr - ₹38 L/yr

Analyst
38 salaries
unlock blur

₹3.5 L/yr - ₹6 L/yr

Explore more salaries
Compare Exusia with

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.6
Compare

Saama Technologies

3.7
Compare

Systems Plus

4.2
Compare
write
Share an Interview