Upload Button Icon Add office photos
Engaged Employer

i

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

Growfin Verified Tick

Compare button icon Compare button icon Compare
4.2

based on 5 Reviews

Filter interviews by

Growfin Sde1 Interview Questions and Answers

Updated 3 Feb 2024

Growfin Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 16 Aug 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Feb 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 

L1: Find the subarray of array which have 0th index min of that array and 1st index have max of the array indices.
Ex: {3,9,5,8,10,5,1,4}
Result : {1,10} = {6, 4}

Find the middle node of a Linkedlist.

Round 3 - Group Discussion 

L2 : Write a db schema for WhatsApp:
How many collections or tables needed to personal chat, group chat and reactions to messages with basic variables.

Http questions
Rest api

Print n prime numbers.

Interview Preparation Tips

Interview preparation tips for other job seekers - Everything i answered but no response from them.
May be they are expecting more from a 1 yoe fresher.

Interview questions from similar companies

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

The first round was a coding test, which was outsourced to an external vendor. I was asked 2 basic DSA questions, and there was discussions around the time and space complexity, and scope of optimizing the solutions. Post that there were a few questions around Spring Boot features and basic system design. The interviewer was professional throughout the interview, and the interview process felt more like a discussion, as compared to the standard interview process.

Round 2 - Coding Test 

There was another round of coding - this time conducted by the organization itself. It consisted of a medium level DSA question on stacks. I wrote the code on my personal IDE and executed it there itself. The interviewer discussed about the possible edge cases and how I would deal with them. Post solving the question I was asked about my previous projects.

Round 3 - Technical 

(3 Questions)

  • Q1. Discuss in detail about a scenario where a challenging production issue was handled.
  • Q2. What are your responsibilities as a senior / team lead in the current organization?
  • Q3. How did you handle conflicts with junior engineers and reporting managers?
Round 4 - Group Discussion 

This was the final round where the discussion was largely around system design and HLD. It started off with questions are system design patterns and concepts. Then I was asked to design a booking design, with discussions around concurrency control and transaction management.

Interview Preparation Tips

Interview preparation tips for other job seekers - The coding questions were easy-medium, so strong basics is important. Be prepared to talk about previous projects in detail. A good knowledge on system design concepts is a must.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

(1 Question)

  • Q1. Diff between react and jQuery
  • Ans. 

    React is a modern JavaScript library for building user interfaces, while jQuery is a fast and concise JavaScript library for DOM manipulation.

    • React is component-based, promoting reusability and modularity.

    • React uses a virtual DOM for efficient updates, while jQuery directly manipulates the DOM.

    • React is declarative, making it easier to reason about the UI, while jQuery is imperative.

    • React is typically used for single-pa...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Technical related to DSA, Problem Solving and Coding
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

This round has 3 coding questions mostly based on graph and trees

Round 2 - Hackathon 

(2 Questions)

  • Q1. A lockable tree problem
  • Ans. 

    Design a data structure for locking/unlocking nodes in a binary tree efficiently.

    • Implement a lockable tree data structure with lock(), unlock(), and isLocked() methods.

    • Ensure a node can only be locked if all ancestors are unlocked and all descendants are locked.

    • Optimize the operations for efficiency.

    • Consider using a flag in each node to track its locked status.

    • Use a recursive approach to check locking conditions.

    • Mainta...

  • Answered by AI
  • Q2. OS level improvements in above problem
  • Ans. 

    Improving the operating system can enhance performance and efficiency of the system.

    • Optimizing memory management to reduce overhead

    • Implementing better scheduling algorithms to improve multitasking

    • Enhancing file system performance for faster data access

    • Improving network stack for better communication speed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in DSA and prepare the basic computer concepts well.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Feb 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Coding assessment in Code signal which is vedio proctored

Round 2 - Technical 

(1 Question)

  • Q1. Design a loan application system
  • Ans. 

    Design a loan application system

    • Collect applicant information such as personal details, employment history, and financial information

    • Include a credit check process to assess applicant's creditworthiness

    • Implement a system for loan approval/rejection based on set criteria

    • Provide options for different types of loans and repayment plans

    • Ensure security measures are in place to protect applicant's sensitive information

  • Answered by AI
Round 3 - Coding Test 

Bank account creation, deposit money, withdraw money

Round 4 - HR 

(1 Question)

  • Q1. Question around work experience and how a particular scenario or situation is handled
Round 5 - Case Study 

Suggest system cost optimization based on given data set

Skills evaluated in this interview

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

Coding and aptitude round

Round 2 - Technical 

(1 Question)

  • Q1. Tree dsa questions
Round 3 - Puzzles Interview 

(1 Question)

  • Q1. Horse race question
Round 4 - HR 

(1 Question)

  • Q1. Location specific question

Software Engineer Interview Questions & Answers

OneCard user image Kishan KAVATHIYA (Kishu)

posted on 15 May 2024

Interview experience
3
Average
Difficulty level
-
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 - Technical 

(1 Question)

  • Q1. Internal Implementation of HashMap
  • Ans. 

    HashMap is implemented using an array of linked lists to handle collisions.

    • HashMap stores key-value pairs in an array of linked lists

    • Hash function is used to determine the index of the array where the key-value pair will be stored

    • Collision handling is done by chaining, where multiple key-value pairs with the same hash value are stored in the same linked list

    • HashMap allows null keys and values

    • HashMap is not synchronized...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 

Asked about data interpretation and all these.

Round 3 - Coding Test 

Coding test is based on DSA mainly.

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your concepts regarding your projects.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Javascript,html, CSS and MySQL

Round 2 - Technical 

(2 Questions)

  • Q1. Basic NodeJs and MySQL questions,scenario-based technical questions and basic interview questions
  • Q2. What is an event loop, The second highest from the table
  • Ans. 

    An event loop is a programming construct that waits for and dispatches events or messages in a program.

    • Event loop is commonly used in asynchronous programming to handle tasks like I/O operations without blocking the main thread.

    • It continuously checks for events in a queue and processes them one by one.

    • Examples of event loops include Node.js event loop for handling asynchronous operations in JavaScript.

    • Event loop helps ...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Basic nodejs and SQL queries question
Round 4 - Behavioral 

(1 Question)

  • Q1. Basic interview question and technology based

Interview Preparation Tips

Topics to prepare for Airpay Payment Services Senior Software Engineer interview:
  • nodejs
  • MySQL
  • restapi

Growfin Interview FAQs

How many rounds are there in Growfin Sde1 interview?
Growfin interview process usually has 3 rounds. The most common rounds in the Growfin interview process are Resume Shortlist, Coding Test and Group Discussion.
How to prepare for Growfin Sde1 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 Growfin. The most common topics and skills that interviewers at Growfin expect are Banking Operations, Oracle ERP, Photoshop, REXX and AMS.

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Bajaj Finance Interview Questions
4.0
 • 289 Interviews
L&T Finance Interview Questions
4.0
 • 142 Interviews
Tata Capital Interview Questions
4.1
 • 129 Interviews
CapitalOne Interview Questions
4.0
 • 73 Interviews
Edelweiss Interview Questions
3.9
 • 57 Interviews
View all
Software Engineer
4 salaries
unlock blur

₹13 L/yr - ₹28 L/yr

Software Developer
4 salaries
unlock blur

₹9 L/yr - ₹12 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹19 L/yr - ₹55 L/yr

Solution Specialist
4 salaries
unlock blur

₹5 L/yr - ₹8.5 L/yr

Sdet Engineer
4 salaries
unlock blur

₹10 L/yr - ₹12 L/yr

Explore more salaries
Compare Growfin with

Bajaj Finance

4.0
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Kotak Mahindra Bank

3.8
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