Upload Button Icon Add office photos
Premium Employer

i

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

IDFC FIRST Bank Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 10.1k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

IDFC FIRST Bank Senior Developer Interview Questions and Answers

Updated 1 Jun 2024

IDFC FIRST Bank Senior Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

1. DS algorithms with linked list questions and dynamic programming

Interview questions from similar companies

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. PLSQL basic to advanced.
  • Q2. Explain collections in details?
  • Ans. 

    Collections in PL/SQL are data structures used to store multiple elements of the same data type.

    • Collections can be nested tables, varrays, or associative arrays.

    • Nested tables are like one-dimensional arrays with no upper bounds.

    • Varrays are like arrays with a maximum size that is specified at declaration.

    • Associative arrays are like lookup tables where each element is accessed using a unique key.

    • Collections can be used t...

  • Answered by AI
  • Q3. Bulk collect concept
  • Ans. 

    Bulk collect is a feature in PL/SQL that allows for fetching multiple rows of data at once.

    • Improves performance by reducing context switches between the PL/SQL engine and SQL engine

    • Reduces network traffic by fetching multiple rows in a single round trip

    • Can be used with SELECT INTO or FETCH INTO statements

  • Answered by AI
  • Q4. Decode and case
  • Q5. Tuning of sql and some sql code
Round 2 - Group Discussion 

Bank product related questions and carrer expericnce .

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

(2 Questions)

  • Q1. Code related quest
  • Q2. 1 program is given to write
Round 2 - One-on-one 

(1 Question)

  • Q1. Scenario based question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

1)Buy and sell stock
2)2 sum
3) system design
4) Elastic search
5) deployment

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

Simple algorithm question about sorting

Round 2 - Technical 

(2 Questions)

  • Q1. Algorith question about quick sort
  • Q2. Nlonn run time of the sort
  • Ans. 

    The time complexity of the quicksort algorithm is O(n log n).

    • Quicksort has an average time complexity of O(n log n).

    • The best case time complexity of quicksort is O(n log n) when the pivot element divides the array into two equal halves.

    • The worst case time complexity of quicksort is O(n^2) when the pivot element is the smallest or largest element in the array.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in Jun 2023. 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 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills

I applied via campus placement at MAEER's MIT College of Engineering, Pune and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is static in java?
  • Ans. 

    Static is a keyword in Java used to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q2. Write a program to replace consecutive same character by single '$' . for e.g. string='Heelo Wworldd'. Output- H$lo $orl$.
  • Ans. 

    The program replaces consecutive same characters in a string with a single '$'.

    • Iterate through each character in the string

    • Compare the current character with the next character

    • If they are the same, replace the next character with '$'

    • Continue until the end of the string

  • Answered by AI
  • Q3. Difference between Function overloading and Function overrriding
  • Ans. 

    Function overloading is having multiple functions with the same name but different parameters. Function overriding is having a derived class implement a method with the same name and parameters as a method in its base class.

    • Function overloading is used to provide different ways of calling a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a derived class...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read all OOPs concept before going to interview. Prepare SQL also.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

All the basic questions of SQL like joins, index, different between in where and having etc

Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Was given a bar raiser round where been asked problems on dp, create a crud shopping cart type webapp in react, and one css problem to align all boxes across diagonal

Round 2 - One-on-one 

(2 Questions)

Mostly around resume and performance optimisation

  • Q1. Verbally design infinte scroll in react
  • Ans. 

    Implementing infinite scroll in React involves dynamically loading content as the user scrolls down the page.

    • Use a scroll event listener to detect when the user reaches the bottom of the page

    • Fetch more data from the server and append it to the existing content

    • Update the state to reflect the new content and trigger a re-render of the component

  • Answered by AI
  • Q2. Flatten array deeply nested
  • Ans. 

    Flatten deeply nested array of strings

    • Use recursion to iterate through each element in the array

    • Check if each element is an array, if so, recursively call the function

    • Concatenate the strings from each nested array into a single flat array

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Joins, Jobs, stored procedures,cursors.

Round 2 - HR 

(1 Question)

  • Q1. What is my package

IDFC FIRST Bank Interview FAQs

How many rounds are there in IDFC FIRST Bank Senior Developer interview?
IDFC FIRST Bank interview process usually has 1 rounds. The most common rounds in the IDFC FIRST Bank interview process are Coding Test.
How to prepare for IDFC FIRST Bank Senior Developer 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 IDFC FIRST Bank. The most common topics and skills that interviewers at IDFC FIRST Bank expect are Information Technology, Middleware, Performance Monitoring, Computer science and Web Services.

Tell us how to improve this page.

IDFC FIRST Bank Senior Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
IndusInd Bank Interview Questions
3.6
 • 591 Interviews
Bandhan Bank Interview Questions
3.7
 • 528 Interviews
Yes Bank Interview Questions
3.7
 • 414 Interviews
View all
IDFC FIRST Bank Senior Developer Salary
based on 26 salaries
₹15 L/yr - ₹40 L/yr
66% more than the average Senior Developer Salary in India
View more details

IDFC FIRST Bank Senior Developer Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

5.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Deputy Manager
2.3k salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Assistant Manager
1.6k salaries
unlock blur

₹2 L/yr - ₹7.1 L/yr

Senior Officer
1.5k salaries
unlock blur

₹1.9 L/yr - ₹5.5 L/yr

Manager
1.4k salaries
unlock blur

₹3.5 L/yr - ₹15 L/yr

Senior Manager
1.4k salaries
unlock blur

₹7 L/yr - ₹22.1 L/yr

Explore more salaries
Compare IDFC FIRST Bank with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.8
Compare

Kotak Mahindra Bank

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