Upload Button Icon Add office photos

Filter interviews by

DSP Mutual Fund Full Stack Developer Interview Questions and Answers

Updated 6 Jan 2022

DSP Mutual Fund Full Stack Developer Interview Experiences

1 interview found

I was interviewed in Mar 2021.

Round 1 - Telephonic Call 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

Interviewers were friendly asked me about what I was doing currently, what are some good projects I want to showcase. Asked Questions related to web. Hosting a project. Some sql queries.

  • Q1. 

    Smallest Window Problem Statement

    Given two strings, S and X, your task is to find the smallest substring in S that contains all the characters present in X.

    Example:

    Input:
    S = "abdd", X = "bd"
    Outpu...
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

General questions on what did you do last month
What are your future plans,
What projects did you make that is a problem solving product and how did you make

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Fullstack Developer in MumbaiEligibility criteria8 + CGPADSP Mutual Fund interview preparation:Topics to prepare for the interview - Arrays, string, DP, GREEDY, BACKTRACKINGGood decent projects on which you can talk almost 25-30 min. Must including few interesting libraries of web or android.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : mental ability questions for geeks for geeks
Tip 2 : codechef question are recommended as the questions were story based
Tip 3 : Do atleast 2 good project on which you can speak upto 25-30 min

Application resume tips for other job seekers

Tip 1 : mention your good projects on the top of the resume
Tip 2 : mention your coding compensation ranks on the resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at Maharaja Agrasen Institute of Technology, Delhi and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration 60 min, topics: DBMS, computer networking, outputs, SQL queries

Round 2 - Coding Test 

Topics: Trees, DP, Greedy

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good understanding of DSA, specially topics like Trees, DP, Graph and Greedy
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

First round was a coding round on coderbyte

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently appeared for the interview in Zemoso Technologies. The structured approach to the interview process made it clear and engaging, and I appreciated insightful questions that helped me showcase my skills. Thanks to Ritu Aggarwal for creating a welcoming atmosphere, it made the interview experience very positive
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. What is software
  • Q2. What is hardware
  • Q3. What are the Various Categories of Software?
  • Q4. What are different SDLC Models Available?
  • Q5. What is the Waterfall Method and What are its Use Cases?

Interview Preparation Tips

Topics to prepare for Novel Office Software Developer interview:
  • Software Engineering
  • Software Development
Interview preparation tips for other job seekers - I am interested in this job
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Fair and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java oops concepts
Round 2 - HR 

(1 Question)

  • Q1. Self intro for yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions on dsa, coding question, overall good experience and so on

Round 2 - Technical 

(2 Questions)

  • Q1. Binary search and sorting
  • Q2. Prime number coding question
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AngelList and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Asked related to python

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain the project in resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between string and string builder.
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, its value cannot be changed. StringBuilder is mutable, allowing for modifications without creating new objects.

    • String concatenation creates a new string object each time, while StringBuilder modifies the existing object directly.

    • StringBuilder is more efficient for concatenating mul...

  • Answered by AI
  • Q2. What is async and await
  • Ans. 

    Async and await are keywords in JavaScript used to work with asynchronous code.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async/await is a more readable and cleaner way to write asynchronous code compare...

  • Answered by AI

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Path Queries Problem Statement

    Consider a weighted, undirected graph with 'V' vertices numbered from 1 to 'V' and 'E' bidirectional edges. You are tasked with handling 'Q' queries. For each query, you are...

  • Ans. Dijkstra Algorithm

    We will run Dijkstra Algorithm for all vertices in this approach and store the minimum distance in an array. Then we can answer the queries using this distance array.
     

    Dijkstra Algorithm is one of the most popular algorithms in graph theory. A single-source shortest path algorithm gives the shortest path length to all vertices from a given vertex known as the source vertex. It is a greedy algorith...

  • Answered Anonymously
  • Q2. 

    Merge Sort Algorithm Problem Statement

    Your task is to sort a sequence of numbers stored in the array ‘ARR’ in non-descending order using the Merge Sort algorithm.

    Explanation:

    Merge Sort is a divide-an...

  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered Anonymously
  • Q3. 

    Rat in a Maze: All Paths Problem

    You are provided with an N * N maze where a rat is positioned at starting cell MAZE[0][0]. The goal is to determine and print all possible paths that the rat can take to r...

  • Ans. Backtracking Approach

    Initialize, all the cells of the solution matrix used to print the path matrix to 0. First, you cannot make use of the existing maze to print the solution maze as you have to distinguish b/w 1 of maze or 1 of ‘SOLUTION matrix.

     

    Form a recursive function, which will follow a path and check if the path reaches the destination or not. If the path does not reach the destination then backtrack and t...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

It was a test that had like basic c questions that one needs to practice, basic logical reasoning and Mathematics, a couple of English grammar questions

Round 2 - Coding Test 

There is a coding round with 4 questions 3 coding questions and one find the output of the c program question, one easy question, 2 medium questions one medium to hard level.Two linear data structure questions one array one linked list and one tree question.

Round 3 - Coding Test 

Another coding test with 3 questions medium to hard level questions from trees and linked lists, with optimisation required

Tell us how to improve this page.

Interview Questions from Similar Companies

GAO Tek Interview Questions
4.5
 • 159 Interviews
L&T Finance Interview Questions
3.9
 • 151 Interviews
BCD Travel Interview Questions
4.3
 • 111 Interviews
View all
Assistant Manager
18 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Manager
12 salaries
unlock blur

₹12 L/yr - ₹26 L/yr

Senior Software Developer
5 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Relationship Manager
4 salaries
unlock blur

₹7 L/yr - ₹9 L/yr

Officer
4 salaries
unlock blur

₹5 L/yr - ₹6.6 L/yr

Explore more salaries
Compare DSP Mutual Fund with

ICICI Prudential Mutual Fund

3.8
Compare

SBI Mutual Fund

4.0
Compare

Birla Sun Life Mutual Fund

4.2
Compare

Nippon Life India Asset Management

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