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 Lead Programmer Interview Questions and Answers

Updated 21 Aug 2024

ICRA Analytics Lead Programmer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is CORS policy in web api?
  • Ans. 

    CORS policy allows or restricts cross-origin requests in web APIs.

    • CORS stands for Cross-Origin Resource Sharing.

    • It is a security feature implemented by browsers to prevent unauthorized access to resources on a different origin.

    • CORS policy is enforced by the browser based on the response headers sent by the server.

    • Access-Control-Allow-Origin header specifies which origins are allowed to access the resource.

    • If the reques...

  • Answered by AI
  • Q2. Find 3rd highest salary from employee table in SQL.
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find 3rd highest salary from employee table.

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 2,1 to skip first two highest salaries and get the third highest salary

    • Example: SELECT salary FROM employee_table ORDER BY salary DESC LIMIT 2,1

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why you are looking for change?
  • Ans. 

    Seeking new challenges and opportunities for growth in a dynamic environment.

    • Looking to expand skill set and knowledge in a different industry

    • Interested in working with new technologies and tools

    • Seeking a more collaborative team environment

    • Wanting to take on more leadership responsibilities

  • Answered by AI
  • Q2. Where would you like to see yourself in next 5 years?
  • Ans. 

    In the next 5 years, I see myself leading a team of skilled programmers, working on cutting-edge technologies, and contributing to the success of the company.

    • Leading a team of programmers to develop innovative software solutions

    • Working on advanced technologies like AI, machine learning, and blockchain

    • Contributing to the growth and success of the company through my leadership and technical expertise

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Group Discussion 

A case study was given

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is regression analysis?
  • Ans. 

    Regression analysis is a statistical method used to examine the relationship between two or more variables.

    • It helps in understanding how the value of a dependent variable changes when one or more independent variables are varied.

    • It is used to predict the value of the dependent variable based on the values of the independent variables.

    • There are different types of regression analysis such as linear regression, logistic r

  • Answered by AI
  • Q2. Few questions on python

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with analytical skills
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Assignment 

Guesstimate Assignment

Round 2 - Group Discussion 

Guesstimate GD round

Round 3 - HR 

(2 Questions)

  • Q1. What is forecasting
  • Q2. What is market sizing
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Case Study 

Basics of market estimations

Round 2 - One-on-one 

(1 Question)

  • Q1. Basics on market research
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before May 2022. There were 3 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 

Python technical questions

Round 3 - Assignment 

Basic HR questions like background , why should i hire you

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Program for binary search

Round 2 - Technical 

(1 Question)

  • Q1. Student, Course and Professor timetable program
Round 3 - One-on-one 

(1 Question)

  • Q1. How does custom registry in IBM Websphere work?
  • Ans. 

    Custom registry in IBM Websphere allows users to define their own user repositories for authentication and authorization.

    • Custom registry can be configured in the security.xml file of the Websphere application server.

    • Users can define their own LDAP servers, databases, or custom Java classes as user repositories.

    • Custom registry provides flexibility in integrating with different authentication and authorization systems.

    • Ex...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Basic compensation and pay related details
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Assignment 

Research specific questions, Company based case studies

Round 2 - One-on-one 

(5 Questions)

  • Q1. Describe your most challenging team assignment and how you dealt with it
  • Q2. Technical questions
  • Q3. Behavioral Questions
  • Q4. Aptitude based questions
  • Q5. Situation based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary Related question
  • Q2. Relocation and Notice period related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview before Apr 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. Where do you picture yourself after 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful as iss values are very important
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions around SQL Server, day to day responsibilities
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

1 coding test having a DP question and some spark based questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Fibonacci using DP
  • Ans. 

    Fibonacci using Dynamic Programming

    • Use an array to store calculated Fibonacci numbers to avoid redundant calculations

    • Start with base cases of 0 and 1, then iterate to calculate subsequent Fibonacci numbers

    • Time complexity can be reduced from exponential to linear using DP

  • Answered by AI
  • Q2. SQL questions ( ranks and partition)
Round 3 - One-on-one 

(1 Question)

  • Q1. Design based questions

Skills evaluated in this interview

ICRA Analytics Interview FAQs

How many rounds are there in ICRA Analytics Lead Programmer interview?
ICRA Analytics interview process usually has 2 rounds. The most common rounds in the ICRA Analytics interview process are Technical and HR.
What are the top questions asked in ICRA Analytics Lead Programmer interview?

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

  1. What is CORS policy in web a...read more
  2. Find 3rd highest salary from employee table in S...read more

Tell us how to improve this page.

ICRA Analytics Lead Programmer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 233 Interviews
Sigmoid Interview Questions
3.3
 • 59 Interviews
Merilytics Interview Questions
3.0
 • 50 Interviews
Dunnhumby Interview Questions
4.0
 • 29 Interviews
Everest Group Interview Questions
3.3
 • 25 Interviews
Coronis Health Interview Questions
3.7
 • 24 Interviews
View all
ICRA Analytics Lead Programmer Salary
based on 16 salaries
₹6.8 L/yr - ₹14 L/yr
At par with the average Lead Programmer Salary in India
View more details

ICRA Analytics Lead Programmer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate Analyst
434 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Lead Analyst
153 salaries
unlock blur

₹3.5 L/yr - ₹7.6 L/yr

Principal Analyst
87 salaries
unlock blur

₹5 L/yr - ₹11.8 L/yr

Assistant Manager
54 salaries
unlock blur

₹7.5 L/yr - ₹15 L/yr

Senior Associate
43 salaries
unlock blur

₹3 L/yr - ₹5.8 L/yr

Explore more salaries
Compare ICRA Analytics with

Indegene

3.4
Compare

Markets and Markets

3.2
Compare

LogixHealth

3.5
Compare

Coronis Health

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