Upload Button Icon Add office photos
Engaged Employer

i

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

Fi Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Fi Software Engineer Interview Questions and Answers

Updated 28 Apr 2024

Fi Software Engineer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed before Apr 2023. There were 5 interview rounds.

Round 1 - Coding Test 

Duration 1 Hr 30m.
2 questions, 1 from hashing and other from Graphs.

Round 2 - Technical 

(1 Question)

  • Q1. Question: Check whether it is possible to travel from top left corner to bottom right corner of a grid which has obstacles.
  • Ans. 

    Yes, we can use dynamic programming to check if it is possible to travel from top left corner to bottom right corner of a grid with obstacles.

    • Create a 2D array to store if each cell is reachable or not.

    • Initialize the top left cell as reachable and all other cells as unreachable.

    • Iterate through the grid and update the reachable cells based on the cells above and to the left.

    • Return whether the bottom right cell is reacha

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. 2 questions of leetcode medium level from Tree.
Round 4 - Technical 

(1 Question)

  • Q1. One question from Map
Round 5 - Technical 

(1 Question)

  • Q1. Few technical and behavior related questions were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DS Algo and make sure that you know everything about your resume.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
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 - Coding Test 

Easy coding questions DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the pointers direction

    • Start with three pointers: current, previous, and next

    • Iterate through the linked list, updating the pointers to reverse the direction

    • Update the head pointer to point to the new first node

  • Answered by AI
  • Q2. Find middle of linked list
  • Ans. 

    To find the middle of a linked list, use the slow and fast pointer technique.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps until fast reaches the end of the list.

    • The position of the slow pointer will be the middle of the linked list.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Pick from a basket of oranges
  • Ans. 

    The question is asking to pick an orange from a basket.

    • Carefully select a ripe orange without any bruises or blemishes

    • Gently twist the orange off the stem to avoid damaging the fruit

    • Check for firmness and weight to determine ripeness

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Open Financial Technologies Private Limited Software Engineer interview:
  • Easy DSA

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Apr 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 - One-on-one 

(1 Question)

  • Q1. Find connected components in a graph
  • Ans. 

    Use Depth First Search (DFS) to find connected components in a graph

    • Start by initializing all vertices as unvisited

    • Iterate through each vertex and perform DFS to find connected components

    • Keep track of visited vertices to avoid revisiting

    • Example: For a graph with vertices {A, B, C} and edges {(A, B), (B, C)}, the connected components are {A, B, C}

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Design chess game
  • Ans. 

    Design a chess game with proper board setup, piece movements, and win conditions.

    • Create a 8x8 grid to represent the chess board

    • Assign initial positions to each type of chess piece (pawn, rook, knight, bishop, queen, king)

    • Implement rules for each piece's movement (e.g. pawn moves forward, rook moves horizontally/vertically)

    • Check for valid moves and capture opponent's pieces

    • Implement win conditions (checkmate, stalemate)

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

Build a typeahead component

Round 2 - Technical 

(2 Questions)

  • Q1. Build a form for personal details
  • Ans. 

    Build a form for personal details

    • Include fields for name, email, phone number, address, date of birth

    • Use input fields, dropdowns, and date pickers for user input

    • Add validation for required fields and correct formats

    • Consider user experience with clear labels and easy navigation

  • Answered by AI
  • Q2. Add validations to different fields
  • Ans. 

    Implement validations for different fields in software development.

    • Identify the fields that require validation such as email, password, phone number, etc.

    • Use regular expressions to validate input data format.

    • Implement client-side and server-side validations to ensure data integrity.

    • Display error messages for invalid input to guide users on correct data entry.

  • Answered by AI

I applied via Job Portal and was interviewed in Apr 2022. There were 5 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 

It was simple program of url shorting for registered and non registered users each request must have unique shortened url.

Round 3 - Technical 

(2 Questions)

  • Q1. Palindrome implementation and run time
  • Ans. 

    A palindrome is a word or phrase that reads the same backward as forward. Implementing it involves comparing the first and last characters and iterating towards the middle.

    • Implement a function that takes a string as input and returns true if it is a palindrome, false otherwise.

    • Use two pointers, one starting from the beginning and the other from the end, and compare the characters at each position.

    • If the characters matc...

  • Answered by AI
  • Q2. DSA and various algorithms and run time
Round 4 - One-on-one 

(1 Question)

  • Q1. This round was one on one with VP of engineering. Basic q and a regarding role and responsibilities
Round 5 - HR 

(1 Question)

  • Q1. Relocation, Reason For job change, future plan, careers objective

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA and algorithms
In coding test they asked you explain code and if there is any improvement needed in code.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions on data structures
Round 2 - Behavioral 

(1 Question)

  • Q1. Second round was Managerial Round. The interviewer basically had a conversation with me and asked some hr questions also.
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Scenarios base conding round

Round 2 - Coding Test 

Questions on strings in javascript.
Basic javascript and typescript.

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on cloud technologies
Round 4 - HR 

(1 Question)

  • Q1. Cultural fit and salary related discussion
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 in Nov 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. It was one-on-one round with the CTO. They judged me on my technical knowledge as well as understanding of tech-era.
  • Q2. I was asked question related to the languages and tech-stacks I mentioned in my resume and also question related to OOPs concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on what you speak. If you don't know the answer to a question, just say 'no' directly.

I applied via Job Fair and was interviewed in Mar 2022. There were 4 interview rounds.

Round 1 - Coding Test 

There were 2 easy question 1 medium
Question were good but have weak test case.

Round 2 - Assignment 

This was project or lld round.
You just be aware of class and other stuff.

Round 3 - Technical 

(1 Question)

  • Q1. Discussion on project Asked graph coding question in real scenerio. Like asked what algorithm you will use for different real life problems
Round 4 - HR 

(1 Question)

  • Q1. Why engineering and what u know about cred

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with dsa especially graph algo bfs dfs
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Insights about company and candidate
  • Q2. If I know Data structures or not?
  • Ans. 

    Yes, I have knowledge of data structures.

    • I have experience with common data structures like arrays, linked lists, stacks, queues, trees, and graphs.

    • I understand the time and space complexity of different data structures and their operations.

    • I have implemented data structures in various programming languages like C++, Java, and Python.

    • For example, I have used a hash table to efficiently store and retrieve data in consta

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared and enjoy the process. Cred has a good management.

Skills evaluated in this interview

Fi Interview FAQs

How many rounds are there in Fi Software Engineer interview?
Fi interview process usually has 5 rounds. The most common rounds in the Fi interview process are Technical and Coding Test.
How to prepare for Fi Software Engineer 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 Fi. The most common topics and skills that interviewers at Fi expect are Coding, Customer Experience, Financial Services, IOS and Open Source.
What are the top questions asked in Fi Software Engineer interview?

Some of the top questions asked at the Fi Software Engineer interview -

  1. Question: Check whether it is possible to travel from top left corner to bottom...read more
  2. Few technical and behavior related questions were ask...read more
  3. 2 questions of leetcode medium level from Tr...read more

Tell us how to improve this page.

Fi Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Fi Software Engineer Salary
based on 5 salaries
₹15 L/yr - ₹28 L/yr
119% more than the average Software Engineer Salary in India
View more details

Fi Software Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Corporate Partnership Manager
6 salaries
unlock blur

₹9.5 L/yr - ₹16.2 L/yr

Data Analyst
6 salaries
unlock blur

₹12 L/yr - ₹16 L/yr

Software Engineer
5 salaries
unlock blur

₹15 L/yr - ₹28 L/yr

Talent Partner
4 salaries
unlock blur

₹14 L/yr - ₹32 L/yr

Devops Engineer
4 salaries
unlock blur

₹1 L/yr - ₹21 L/yr

Explore more salaries
Compare Fi with

Kissht Finance

3.9
Compare

Indifi Technologies

3.8
Compare

Money View

4.2
Compare

Ocrolus East

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