Upload Button Icon Add office photos
Engaged Employer

i

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

Angel One Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Angel One SDE (Software Development Engineer) Interview Questions and Answers

Updated 2 Dec 2023

Angel One SDE (Software Development Engineer) Interview Experiences

1 interview found

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

I applied via Instahyre and was interviewed before Feb 2022. 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 - Technical 

(2 Questions)

  • Q1. Number of Islands
  • Ans. 

    Count the number of islands in a 2D grid.

    • Iterate through the grid and for each '1', perform a depth-first search to mark all connected '1's as visited.

    • Increment the count of islands for each new '1' encountered.

    • Return the total count of islands.

  • Answered by AI
  • Q2. Coin change problem
  • Ans. 

    The coin change problem involves finding the minimum number of coins needed to make a certain amount of change.

    • Use dynamic programming to solve the problem efficiently

    • Start with a base case where the amount of change is 0

    • Iterate through each coin denomination and calculate the minimum number of coins needed for each amount of change

    • Store the results in a table and use them to calculate the minimum number of coins for l

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Javascript based questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion with a senior manager

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

15 MCQs and 2 coding questions were given. MCQs include questions from topics like dbms, system design, oops etc.
1st coding question was of dp and 2nd was of a good question of graph.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Create a linked list from scratch and then delete a given node. Then print the linked list.
  • Ans. 

    Create and delete a node in a linked list and print the updated list.

    • Create a Node class with data and next pointer attributes

    • Create a LinkedList class with head attribute and methods to add, delete and print nodes

    • To delete a node, traverse the list and update the next pointer of the previous node to skip the node to be deleted

    • Print the list by traversing and printing the data of each node

  • Answered by AI
  • Q2. Reverse first K(given) characters of string.
  • Ans. 

    Reverse the first K characters of a given string.

    • Take the first K characters of the string.

    • Reverse the selected substring.

    • Concatenate the reversed substring with the rest of the original string.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Be calm. Practice questions from leetcode.

Skills evaluated in this interview

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

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. Deep dive into java concepts. Max diameter of a tree in java.
Round 2 - One-on-one 

(1 Question)

  • Q1. Lld of loan and borrower design. Design dbs schema. About connection pool, db isolation.
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring manager round, more about previous experience and some hypothetical questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What are the best and worst solutions for the coding problem "Longest Substring Without Repeating Characters," including a detailed explanation of each solution along with their time and space complexity?
  • Ans. 

    The Longest Substring Without Repeating Characters problem involves finding the length of the longest substring without any repeating characters.

    • Best solution: Sliding Window approach with HashSet to track unique characters. Time complexity O(n), space complexity O(min(n, m)) where n is the length of the string and m is the size of the character set.

    • Worst solution: Brute force approach checking all substrings for uniqu...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions regarding Redis and cache eviction policies, and how would you implement a low-level design for the Least Recently Used (LRU) cache algorithm?
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the react lifecycle functions and how they work
  • Ans. 

    React lifecycle functions are methods that are automatically called at specific points in a component's life cycle.

    • Mounting: constructor, render, componentDidMount

    • Updating: render, componentDidUpdate

    • Unmounting: componentWillUnmount

  • Answered by AI
  • Q2. Css box model, difference between padding and margin
  • Ans. 

    Padding is the space inside the border of an element, while margin is the space outside the border.

    • Padding is used to create space between the content and the border of an element.

    • Margin is used to create space between the border of an element and other elements.

    • Padding affects the size of the content area, while margin affects the positioning of the element.

    • Example: padding: 10px will create 10 pixels of space inside ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations in CTC and variables?
  • Q2. Will you relocate to the location required?

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare everything bookish! don't only speak related to your experience

Skills evaluated in this interview

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

1 hour, the coding test was based on a project given to us

Round 2 - One-on-one 

(2 Questions)

  • Q1. Detailed questionnaire on React
  • Q2. Problem solving based on array manipulations
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. One leetcode easy-medium problem
  • Q2. Java, springboot and oops question
Round 2 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. System design questions

Interview Preparation Tips

Interview preparation tips for other job seekers - HR didnt reach out post interviews
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Maths,quant for 1 hour duration

Round 2 - Coding Test 

Arrays, strings, linked list, palindrome

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

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

Round 1 - Coding Test 

It was more based on array/string manipulation, stack/queue based, if you have solved questions before then it will be easy/medium difficulty level for yo

Round 2 - Technical 

(2 Questions)

  • Q1. Asteroid collision
  • Q2. Stack/queue based
Round 3 - One-on-one 

(1 Question)

  • Q1. Resume based discussion. therory concepts/ OOPS's , DBMS, OS,etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepared for technical questions
Coding questions will be easy to medium , and expected to solve 2 questions fully.
Be communicative throughout the interview
Interview experience
3
Average
Difficulty level
Hard
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 - HR 

(2 Questions)

  • Q1. Explain Concurrency
  • Ans. 

    Concurrency is the ability of a system to execute multiple tasks simultaneously.

    • Concurrency allows multiple tasks to run concurrently, improving performance and efficiency.

    • Concurrency can be achieved through multithreading or multiprocessing.

    • Example: A web server handling multiple requests simultaneously using multithreading.

  • Answered by AI
  • Q2. Explain Acid principles
  • Ans. 

    ACID principles are a set of properties that guarantee database transactions are processed reliably.

    • Atomicity: Transactions are all or nothing. If one part of the transaction fails, the entire transaction is rolled back.

    • Consistency: Transactions bring the database from one valid state to another. All constraints are satisfied.

    • Isolation: Transactions are isolated from each other until they are completed.

    • Durability: Once...

  • Answered by AI

Skills evaluated in this interview

Angel One Interview FAQs

How many rounds are there in Angel One SDE (Software Development Engineer) interview?
Angel One interview process usually has 4 rounds. The most common rounds in the Angel One interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in Angel One SDE (Software Development Engineer) interview?

Some of the top questions asked at the Angel One SDE (Software Development Engineer) interview -

  1. Number of Isla...read more
  2. Coin change prob...read more
  3. Javascript based questi...read more

Tell us how to improve this page.

Angel One SDE (Software Development Engineer) Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 774 Interviews
HighRadius Interview Questions
2.9
 • 181 Interviews
Razorpay Interview Questions
3.6
 • 149 Interviews
Visa Interview Questions
3.5
 • 137 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
HDFC Securities Interview Questions
3.6
 • 102 Interviews
Revolut Interview Questions
2.6
 • 95 Interviews
Sharekhan Interview Questions
3.9
 • 78 Interviews
Groww Interview Questions
3.8
 • 65 Interviews
View all
Angel One SDE (Software Development Engineer) Salary
based on 6 salaries
₹17.6 L/yr - ₹22 L/yr
26% less than the average SDE (Software Development Engineer) Salary in India
View more details
Senior Executive
347 salaries
unlock blur

₹1.6 L/yr - ₹4.7 L/yr

Relationship Manager
322 salaries
unlock blur

₹1.5 L/yr - ₹4.1 L/yr

Assistant Manager
269 salaries
unlock blur

₹2.1 L/yr - ₹7.6 L/yr

Equity Dealer
212 salaries
unlock blur

₹0.9 L/yr - ₹4.5 L/yr

Deputy Manager
155 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Explore more salaries
Compare Angel One with

Zerodha

4.2
Compare

Upstox

3.7
Compare

Groww

3.8
Compare

5paisa Capital Ltd.

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