Premium Employer

i

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

Desun Technology Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Desun Technology Lead Business Development Manager Interview Questions and Answers

Updated 19 Dec 2024

Desun Technology Lead Business Development Manager Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Self Introduction
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked for self Introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, focus on your strength and be honest.

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 and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. A Lot of OOPS and Virtual concept
  • Q2. Basic SQL till joins
  • Q3. Java script medium
  • Q4. C# oops output based

Interview Preparation Tips

Topics to prepare for Indus Valley Partners Associate Software Engineer interview:
  • OOPS
  • C#
  • Javascript
  • SQL
Interview preparation tips for other job seekers - Learn OOPS, Learn DBMS and practice SQL queries a lot and DSA till Linked list
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 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 - Coding Test 

Programming on basics of C

Round 3 - Coding Test 

Programming on basics of C

Round 4 - HR 

(1 Question)

  • Q1. Salary details and location preference
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Group Discussion 

Pretty standard GD on topics around working remotely and country's macroeconomic

Round 2 - Technical 

(2 Questions)

  • Q1. Derivative Knowledge Check
  • Q2. Alternate Investment Knowledge Check
Round 3 - Technical 

(2 Questions)

  • Q1. Scenario Based and financial instrument level
  • Q2. Deep dive into derivative and alternative investment
  • Ans. 

    Derivative and alternative investments involve complex financial instruments and strategies beyond traditional stocks and bonds.

    • Derivatives are financial contracts whose value is derived from an underlying asset, index, or rate. Examples include options, futures, and swaps.

    • Alternative investments are non-traditional assets such as private equity, hedge funds, real estate, and commodities.

    • Both derivative and alternative...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. General HR Question
  • Q2. Strength and Weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Well with financial knowledge of both derivative and alternative investments. Expect scenario based questions and tailor your resume according to the JD
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. OOPs related questions like polymorphism, inheritance
  • Q2. SQL based question about Normalization
  • Q3. Your past work experiences, your internship experiences etc
  • Ans. 

    I have diverse experiences in software development through internships and projects, focusing on teamwork and problem-solving.

    • Interned at XYZ Corp, where I developed a web application using React and Node.js, improving user engagement by 30%.

    • Worked on a team project in college to create a mobile app for local businesses, enhancing my collaboration and coding skills.

    • Participated in hackathons, where I learned to work un...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at sql if you are joining mumbai office as its mostly a consultant role then a tech role. you wont be working on challenging stuff but more of mundane task. so if you have any other offer paying you the same type of money, do consider that
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is Connection pooling
  • Ans. 

    Connection pooling is a technique to manage database connections efficiently, reducing overhead and improving performance.

    • Connection pooling maintains a pool of active database connections for reuse.

    • It reduces the overhead of establishing a new connection for each database request.

    • Example: A web application can reuse connections from the pool instead of opening new ones for each user request.

    • Connection pools can be con...

  • Answered by AI
  • Q2. What is mounting in docker
  • Ans. 

    Mounting in Docker allows you to share files between the host and containers, enabling data persistence and configuration management.

    • Mounting can be done using volumes or bind mounts.

    • Volumes are managed by Docker and are stored in a part of the host filesystem which is not directly accessible.

    • Example of a volume: `docker run -v my_volume:/data my_image`.

    • Bind mounts allow you to specify an exact path on the host, e.g., ...

  • Answered by AI
  • Q3. What is decorators
  • Ans. 

    Decorators are a design pattern in Python that allows modifying the behavior of functions or methods at runtime.

    • A decorator is a function that takes another function and extends its behavior without explicitly modifying it.

    • Common use cases include logging, access control, and caching.

    • Example: @staticmethod and @classmethod are built-in decorators in Python.

    • Custom decorators can be created using nested functions.

    • Example...

  • Answered by AI
  • Q4. Shell script question

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

  • Q1. 

    Candies Distribution Problem Statement

    Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...

  • Ans. 

    The task is to distribute candies to students based on their performance while minimizing the total candies distributed.

    • Create an array to store the minimum candies required for each student.

    • Iterate through the students' ratings array to determine the minimum candies needed based on the adjacent ratings.

    • Consider both left-to-right and right-to-left passes to ensure fair distribution.

    • Keep track of the total candies dist

  • Answered by AI
  • Q2. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Use Divide and Conquer approach to recursively divide the input array into two halves.

    • Merge the sorted halves to produce a completely sorted array.

    • Ensure the implementation handles the constraints specified in the problem statement.

    • Example: For input [3, 1, 4, 1, 5], the output should be [1, 1, 3, 4, 5].

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, apti , programming language , SETime 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 : Do not put false things on resume.
Tip 2 : Have some projects on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Complex sql scenarios and their results
  • Ans. 

    Complex SQL scenarios and their results

    • Using subqueries to filter data

    • Joining multiple tables with complex conditions

    • Using window functions to calculate running totals

    • Pivoting data to transform rows into columns

    • Using recursive queries to traverse hierarchical data

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have strong knowledge in SQL, ETL & DWH concepts

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Nov 2021. 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 - Technical 

(2 Questions)

  • Q1. Oops concepts, core java
  • Q2. Java 8 stream api and lambda

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well it will be easy to crack. they hire good peope

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Desun Technology Interview FAQs

How many rounds are there in Desun Technology Lead Business Development Manager interview?
Desun Technology interview process usually has 2 rounds. The most common rounds in the Desun Technology interview process are One-on-one Round.

Tell us how to improve this page.

Desun Technology Lead Business Development Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Desun Technology Innovation | Technology | Solution.

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
View all

Desun Technology Lead Business Development Manager Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Backend Developer
5 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Front end Developer
5 salaries
unlock blur

₹1 L/yr - ₹2.8 L/yr

React Native Developer
4 salaries
unlock blur

₹1.2 L/yr - ₹3.8 L/yr

Full Stack Developer
3 salaries
unlock blur

₹1.5 L/yr - ₹2 L/yr

Explore more salaries
Compare Desun Technology with

Maxgen Technologies

4.6
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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