Upload Button Icon Add office photos
Engaged Employer

i

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

IntegriChain Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 31 Reviews

Filter interviews by

IntegriChain Analyst Interview Questions and Answers

Updated 20 Mar 2023

IntegriChain Analyst Interview Experiences

1 interview found

Analyst Interview Questions & Answers

user image Anonymous

posted on 20 Mar 2023

Interview experience
3
Average
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2022. There were 4 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 - HR 

(1 Question)

  • Q1. General questions from HR, regarding your work exp and comfort zone,
Round 3 - One-on-one 

(1 Question)

  • Q1. 2nd round with respective managers and leads, with the same question on zoom meeting
Round 4 - One-on-one 

(1 Question)

  • Q1. With on shore leads along with just basic checks and language proficiency.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please understand its time taking process, its not very easy to get select and not so difficult even. Just be real and normal during the I.terview.

Analyst Jobs at IntegriChain

View all

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Project Discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

1st round included basic apt questions and essay writing

Round 2 - HR 

(2 Questions)

  • Q1. General resume questions
  • Q2. Aptitude questions
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Virtual basic discussion, ques on basic programming only

Round 2 - Coding Test 

1 hour major interview of first round only technical and core concepts on programming

Round 3 - HR 

(1 Question)

  • Q1. General questions and introduction to company policy
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 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - It was not good and have very bad experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Highlight the odd cells in excel
  • Ans. 

    Use conditional formatting to highlight odd cells in Excel

    • Select the range of cells you want to highlight

    • Go to the 'Home' tab and click on 'Conditional Formatting'

    • Choose 'New Rule' and select 'Use a formula to determine which cells to format'

    • Enter the formula '=MOD(A1,2)=1' (assuming A1 is the top-left cell of your selected range)

    • Choose the formatting style you want for the odd cells

  • Answered by AI
  • Q2. What are Joins in SQL, explain different joins and their outputs
  • Ans. 

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

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table

    • FU...

  • Answered by AI
  • Q3. Query to give running sum of salary
  • Ans. 

    Use window function to calculate running sum of salary in SQL

    • Use window function like SUM() with OVER() clause

    • Partition the data by employee ID if needed

    • Order the data by date or any other relevant column

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your SQL strong and practice joins with problem solving questions

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Salary Expectation
Round 2 - Technical 

(1 Question)

  • Q1. 14 questions in excel formulas

Interview Preparation Tips

Interview preparation tips for other job seekers - To prepare Excel Formulas and Hlookup,vlookup and etc....
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Project Discussion
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

First round is gamified aptitude that is playfull easy to crake.

Round 2 - Aptitude Test 

That was a aptitude test easy to crake. major question are percentage,reasoning,average,ven diagram,number system, basic math question

Round 3 - Assignment 

Science base assessment (at the first they give certain amount of course and course source that we need to study) easy 10 mcq question we need to learn the course.

Round 4 - HR 

(5 Questions)

  • Q1. They test our problem solving skill so they give a bunch of aptitude question and explain to the hr.
  • Q2. About my family
  • Q3. Strength and weakness
  • Q4. Recent book you read
  • Q5. Project and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - be yourself. express your knowledge to the hr, and be confident.
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.
  • 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

IntegriChain Interview FAQs

How many rounds are there in IntegriChain Analyst interview?
IntegriChain interview process usually has 4 rounds. The most common rounds in the IntegriChain interview process are One-on-one Round, Resume Shortlist and HR.
How to prepare for IntegriChain 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 IntegriChain. The most common topics and skills that interviewers at IntegriChain expect are Data Processing, MS Office, Information Management, Life Sciences and Business process.
What are the top questions asked in IntegriChain Analyst interview?

Some of the top questions asked at the IntegriChain Analyst interview -

  1. 2nd round with respective managers and leads, with the same question on zoom me...read more
  2. With on shore leads along with just basic checks and language proficien...read more

Tell us how to improve this page.

IntegriChain Analyst Salary
based on 58 salaries
₹4 L/yr - ₹8.3 L/yr
At par with the average Analyst Salary in India
View more details

IntegriChain Analyst Reviews and Ratings

based on 5 reviews

4.9/5

Rating in categories

4.3

Skill development

4.9

Work-Life balance

5.0

Salary & Benefits

4.9

Job Security

4.9

Company culture

4.5

Promotions/Appraisal

4.9

Work Satisfaction

Explore 5 Reviews and Ratings
Analyst, Government Pricing

Pune

3-5 Yrs

Not Disclosed

Explore more jobs
Analyst
58 salaries
unlock blur

₹4 L/yr - ₹8.4 L/yr

Data Analyst
22 salaries
unlock blur

₹6 L/yr - ₹9 L/yr

Software Engineer
16 salaries
unlock blur

₹6.8 L/yr - ₹18.3 L/yr

Associate Analyst
13 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Senior Analyst
11 salaries
unlock blur

₹6.8 L/yr - ₹11 L/yr

Explore more salaries
Compare IntegriChain with

Cipla Health

4.2
Compare

Biocon Limited

3.9
Compare

DRJ & CO

5.0
Compare

Sun Pharmaceutical Industries

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview