Upload Button Icon Add office photos
Engaged Employer

i

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

ICRA Analytics Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ICRA Analytics Associate Programmer Interview Questions and Answers

Updated 9 Apr 2025

ICRA Analytics Associate Programmer Interview Experiences

2 interviews found

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

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. REST API,N-layer Architecture,basic programming
  • Q2. Basic of Angular,NET and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't come here for salary bikes, come here at initial career phase.

I applied via Campus Placement and was interviewed before Nov 2021. 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 - Aptitude Test 

Logical reasoning and problem-solving

Round 3 - Coding Test 

OOP concepts and basic coding questions were asked

Round 4 - HR 

(2 Questions)

  • Q1. Tell me something about yourself
  • Q2. What are your ambitions

Interview Preparation Tips

Topics to prepare for ICRA Analytics Associate Programmer interview:
  • OOPS
  • Logical Problem Solving
Interview preparation tips for other job seekers - Prepare OOPs concept and should have sound knowledge of coding and zeal to learn and solve problems

Associate Programmer Interview Questions Asked at Other Companies

asked in Xceedance
Q1. Based on your resume and your experience with Java, can you descr ... read more
Q2. Reversing a string

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about ICRA Analytics?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Job Portal

Round 1 - HR 

(2 Questions)

  • Q1. Orientation skills
  • Q2. Tell me about yourself
  • Ans. 

    I'm a passionate software engineer with a strong background in full-stack development and a love for problem-solving.

    • Graduated with a degree in Computer Science from XYZ University.

    • Worked at ABC Corp, where I developed a web application that improved user engagement by 30%.

    • Proficient in languages like JavaScript, Python, and Java, with experience in frameworks such as React and Django.

    • Enjoy collaborating in agile teams...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good experience
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Baisc principle
  • Q2. Oops prolem
Round 2 - Aptitude Test 

Old process take aptitude test

Interview Preparation Tips

Interview preparation tips for other job seekers - Not listed company bank not give you a loan because company not listed
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Maximal rectangal
  • Ans. 

    Find the largest rectangle containing only 1s in a binary matrix.

    • Use dynamic programming to track heights of consecutive 1s.

    • For each row, treat it as a histogram and calculate the maximal rectangle.

    • Utilize a stack to efficiently compute the largest rectangle in a histogram.

    • Example: For a matrix [[0,1,1],[1,1,0],[1,1,1]], the largest rectangle has area 4.

  • Answered by AI
  • Q2. Loop in linked list
  • Ans. 

    Loop in linked list is a situation where a node points to a previous node in the list, creating an infinite loop.

    • Check for loops using Floyd's cycle detection algorithm

    • Use two pointers, one moving twice as fast as the other, to detect a loop

    • If the fast pointer catches up to the slow pointer, there is a loop

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Basic hr question regarding your project and all
  • Q2. He was more interested in what is my thinking pattern

Skills evaluated in this interview

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

1. The online test includes questions related to spark and a coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to sql , spark, data structures were asked
  • Q2. 1. Questions based on window functions (rank, dense_rank)
Round 3 - HR 

(1 Question)

  • Q1. Overall discussion of the projects that you have worked on.
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 

Two easy questions two wasy questions two easy questions two easy questions

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interviews was very easy techijcal interviews was very easy very easy very easy
  • Q2. Interviews was conducted in advance of a news conference in the United Kingdom and the European government on Tuesday

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghar was the second man killed by an twowwywiwywuw The new rules would be similar y
Are these interview questions helpful?

I applied via Company Website and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. First round: 2 coding questions 1. Find minimum from sorted rotated array.
  • Q2. 2.relative sort leetcode....... second round: 1. Flower bed leetcode........2. find maximum subarray sum from an array

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers are really good and helpful. Just focus on the questions and try to discuss it with the interviewer. Third round is the managerial where they will discuss about your projects.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Valid parentheses
  • Ans. 

    Valid parentheses check ensures every opening bracket has a corresponding closing bracket in the correct order.

    • Use a stack to track opening parentheses. Example: '(()' -> push '(', push '(', pop ')' -> stack: ['(']

    • For each closing parenthesis, check if the stack is not empty and matches the last opened. Example: '()' -> valid.

    • An empty stack at the end indicates all parentheses were matched. Example: '(()())' -...

  • Answered by AI
  • Q2. Currying with arrow function
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying can be achieved using arrow functions in JavaScript.

    • Arrow functions automatically bind 'this' and do not have their own 'this' value.

    • Example: const add = a => b => a + b;

    • Example: const addFive = add(5); const result = addFive(3); // result ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. DFS related problem
  • Q2. Machine coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on ds & algo

Skills evaluated in this interview

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. DSA Next Greater element 2 Cycle in Linked List and if cycle remove it Best time to buy and sell stocks Coin Change
  • Ans. 

    Key DSA problems: Next Greater Element, Cycle in Linked List, Stock Trading, and Coin Change.

    • Next Greater Element: Find the next greater number for each element in an array. Example: For [4, 5, 2, 10], result is [5, 10, 10, -1].

    • Cycle in Linked List: Detect and remove a cycle using Floyd's Tortoise and Hare algorithm. If a cycle exists, find the start and remove it.

    • Best Time to Buy and Sell Stocks: Maximize profit by fi...

  • Answered by AI
  • Q2. Pyspark Optimisation techniques Wide and Narrow Transportmations Application Master
  • Q3. SQL Top 3 salaries per department Total working hours for an employee
  • Ans. 

    Retrieve the top 3 salaries from each department and calculate total working hours for each employee using SQL queries.

    • Use the ROW_NUMBER() function to rank salaries within each department: SELECT *, ROW_NUMBER() OVER (PARTITION BY department_id ORDER BY salary DESC) AS rank FROM employees.

    • Filter the results to get only the top 3 salaries: WHERE rank <= 3.

    • To calculate total working hours, use SUM() function: SELECT ...

  • Answered by AI

ICRA Analytics Interview FAQs

How many rounds are there in ICRA Analytics Associate Programmer interview?
ICRA Analytics interview process usually has 4 rounds. The most common rounds in the ICRA Analytics interview process are Resume Shortlist, Aptitude Test and Coding Test.
How to prepare for ICRA Analytics Associate Programmer 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 ICRA Analytics. The most common topics and skills that interviewers at ICRA Analytics expect are ASP.Net, C#, MVC and SQL.
What are the top questions asked in ICRA Analytics Associate Programmer interview?

Some of the top questions asked at the ICRA Analytics Associate Programmer interview -

  1. REST API,N-layer Architecture,basic programm...read more
  2. Basic of Angular,NET and ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Sigmoid Interview Questions
3.3
 • 62 Interviews
Merilytics Interview Questions
3.0
 • 51 Interviews
CapitalVia Interview Questions
4.0
 • 35 Interviews
Dunnhumby Interview Questions
3.9
 • 31 Interviews
Coronis Health Interview Questions
3.6
 • 26 Interviews
Everest Group Interview Questions
3.3
 • 25 Interviews
View all
ICRA Analytics Associate Programmer Salary
based on 41 salaries
₹4.2 L/yr - ₹7.1 L/yr
At par with the average Associate Programmer Salary in India
View more details

ICRA Analytics Associate Programmer Reviews and Ratings

based on 13 reviews

2.8/5

Rating in categories

2.5

Skill development

3.0

Work-life balance

2.7

Salary

4.3

Job security

3.4

Company culture

2.1

Promotions

2.6

Work satisfaction

Explore 13 Reviews and Ratings
Senior Associate Analyst
402 salaries
unlock blur

₹2.4 L/yr - ₹6.5 L/yr

Lead Analyst
160 salaries
unlock blur

₹3.5 L/yr - ₹7.8 L/yr

Principal Analyst
92 salaries
unlock blur

₹5 L/yr - ₹9.8 L/yr

Assistant Manager
47 salaries
unlock blur

₹8.6 L/yr - ₹14 L/yr

Senior Associate
46 salaries
unlock blur

₹3 L/yr - ₹5.4 L/yr

Explore more salaries
Compare ICRA Analytics with

Sigmoid

3.3
Compare

Markets and Markets

3.1
Compare

Merilytics

3.0
Compare

Dunnhumby

3.9
Compare
write
Share an Interview