Upload Button Icon Add office photos

DKSH

Compare button icon Compare button icon Compare

Filter interviews by

DKSH Interview Questions and Answers

Updated 13 Oct 2024
Popular Designations

DKSH Interview Experiences

4 interviews found

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

(1 Question)

  • Q1. Why would you want to join this organisation?
  • Ans. 

    I am passionate about the industry and believe in the company's mission and values.

    • I admire the company's innovative approach to technology and problem-solving.

    • I am impressed by the company's reputation for providing excellent service and support.

    • I see great potential for growth and development within the organisation.

    • I value the opportunity to work with a talented team of professionals.

  • Answered by AI

Senior Service Engineer Interview Questions asked at other Companies

Q1. 1) what are the geometries of cnc lathe, vmc machine 2) how to calculate feed ,speed, rpm , spindle power. 3) How to change bearing of ball screw. 4) what are types of bearings and their angles for angular bearing, what types of combination... read more
View answer (1)

Supervisor Interview Questions & Answers

user image Anonymous

posted on 23 May 2024

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

I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Salary perpose question
  • Q2. Salary question
  • Q3. Salary Around 50k

Interview Preparation Tips

Interview preparation tips for other job seekers - Warehouse

Supervisor Interview Questions asked at other Companies

Q1. Self introduction? & what is mean by eCommerce ? How it can do
View answer (10)
Interview experience
4
Good
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 - Aptitude Test 

Information on self. Family & background

Round 3 - Technical 

(1 Question)

  • Q1. Important technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Details views

Senior Facility Executive Interview Questions asked at other Companies

Q1. What is the working process of STP?
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Can you tell me about your experience in Graphic design and now it aligns with responsibilities listed in the job description?
  • Ans. I explain about my portfolio and types of work that I do in my current role.
  • Answered by Pratik Sakate

Senior Graphic Designer Interview Questions asked at other Companies

Q1. What shortcut key do you use to capitalize letters?
View answer (2)

Top trending discussions

View All
Interview Tips & Stories
2w
timepasstiwari
·
A Digital Markter
ChatGPT prepped me HARD for my interview!
Spent like two hours on chatgpt yesterday prepping for an interview. First, the usual, copy-pasted my resume and the job description, telling it to "upload this to your memory 'cause we are going to talk about it later". Then I grilled it with questions about stuff I didn't get in the job spec, and chatgpt helped me figure things out. I asked it to list the four or five key things they are looking for in the role. Then I told chatgpt to quiz me with ten questions, one at a time, to help me think about how I have gained experience in those areas. After the ten questions, it gave me strengths/weaknesses and a summary. Finally, I had chatgpt summarize each of my answers into three bullet points. Now have got a list of stories ready to go for any interview. No matter the question, I can steer the convo toward one of these success stories.
Got a question about DKSH?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jan 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Three sections - Easy

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical interview - F2F
Round 3 - HR 

(1 Question)

  • Q1. Personality and behaviour test

Interview Preparation Tips

Interview preparation tips for other job seekers - Transparent and smooth process.

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Project Overview BA/PO related questions Domain and Behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Freshen up the domain learnings
Be confident of the behaviour questions as per the past and practical experience

I applied via Walk-in and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic accounts and finance questions
  • Q2. If you dont know answer better be straight forward about it

Interview Preparation Tips

Interview preparation tips for other job seekers - lot of round, pretty tough
Are these interview questions helpful?

I appeared for an interview in May 2017.

Interview Questionnaire 

6 Questions

  • Q1. Can string class be extended
  • Ans. 

    Yes, the string class can be extended in most programming languages.

    • Inheritance can be used to extend the functionality of the string class.

    • By creating a new class that inherits from the string class, additional methods and properties can be added.

    • Extending the string class allows for customization and adding specific functionality to strings.

    • Example: In Python, the string class can be extended by creating a new class ...

  • Answered by AI
  • Q2. What are the implecit object in JSP
  • Ans. 

    Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

    • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

    • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

    • For example, the request object allows access to HTTP request parame...

  • Answered by AI
  • Q3. How does hash map works
  • Ans. 

    A hash map is a data structure that uses a hash function to map keys to values.

    • Hash map stores key-value pairs

    • It uses a hash function to compute an index for each key

    • Collisions can occur when two keys hash to the same index

    • Hash maps provide fast access to values based on their keys

  • Answered by AI
  • Q4. Difference between string buffer and string builder
  • Ans. 

    StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

    • StringBuilder is not synchronized, making it faster but not thread-safe.

    • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

    • Both classes p...

  • Answered by AI
  • Q5. What is MVC
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and modularity in software development.

    • Example: In a web applica...

  • Answered by AI
  • Q6. What are the annotation used in RESTFULL web services
  • Ans. 

    Annotations used in RESTful web services

    • 1. @Path - Specifies the URI path for the resource

    • 2. @GET - Specifies that the method handles HTTP GET requests

    • 3. @POST - Specifies that the method handles HTTP POST requests

    • 4. @PUT - Specifies that the method handles HTTP PUT requests

    • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

    • 6. @PathParam - Binds the value of a URI template parameter to a method paramete...

  • Answered by AI

Interview Preparation Tips

Skills: Java Application Development

Skills evaluated in this interview

I applied via Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: My resume had a couple of projects and a paper publication added to it, which was a part of my second year intern at TCS Innovation Labs.

Tips: I believe that the resume shortlist to appear for the test is just a formality and not a big deal to get through. Most of the students are allowed to appear for the test which is where, the main shortlisting occurs.
Although, the company does cut off people from certain departments. For example, none of the Agriculture and food engineering students were shortlisted for appearing for the test.
Also, from what I have heard, the company runs resumes through a program to take out the shortlist. Hence, certain key words such as "Scholar" or "Conference" may get you a good chance to get through the shortlisting.

Round: Test
Experience: The test is mainly quant based and how fast you can think and rationalize. They expect excellent speed; they ask you 20 questions to be answered in 30 minutes.
Tips: Normally, if a student is asked to appear for this right after his JEE examination, he would be able to get through it easily. But since our analytical thinking goes way down once we actually get in, it has to be worked upon again. I'd suggest you to solve all the quant questions of any CAT preparatory book for the American Express test. The test questions are quite similar to those that the CAT students prepare for.

Round: Technical Interview
Experience: In general, the American Express interviews are considered to be pretty peaceful compared to the interviews of other companies. I was just asked about my work at TCS Innovation Labs and the paper I would be publishing based on that work and the courses I have done in Data Analytics and what all do I know in it. They do not test the knowledge you say you possess.
Tips: While I was preparing for my interview, I was told to read about Amex and its products. Secondly, and most importantly, I was aksed to read a lot about credit card frauds and suggest ways of preventing that. Even during my time, a lot of people were asked about this and judged severely on that. This is a must must if you would be appearing for its interview.

Also, you would do well if you are able to connect with the interviewer. For instance, if both of you have been a part of the same inter IIT or have the same tastes, etc.

Also, the interviews are that peaceful that you are able to direct the interview in your favour. There are certain parts of your CV that you can easily talk about and certain parts that you would want to avoid. If you are able to think on your feet, it is easy to re direct the interview in your favour and the things that you would like to talk about; in my case, it was my work at TCS.

Round: Puzzle Interview
Experience: The main decision whether you have to be taken in or not is decided in your first round of interview after which, the puzzle interview is just a formality and to find out whether you are able to think on your feet or not. Not a big deal, pretty easy.
Tips: Nothing to be worried about, the puzzles asked are pretty easy and most probably, you would have already heard them if you have a nag of solving puzzles.

General Tips: Do not worry or stress yourself much. The interview is pretty easy if you have an edge in the skills that the company wants. I had started studying Data Analytics in my second year summer vacations, just 1 hour a day for hardly about a month. Which gave me enough of an edge. The main hurdle lies in getting through the test round where about 300 people are simply cut off.
Skill Tips: You should be able to code efficiently. Knowledge in Python and SQL is a big plus.
Also, I had done a course on Coursera called "Machine Learning" of Stanford University. Today, the company does not expect a lot of knowledge in Data Analytics from students which is why this course gave me the edge I needed to get through the interview. It's a pretty easy course and not very demanding. I would recommend this if you want to find out even whether you'd be interested in Data Analytics or not.
I was asked about the things I know and whether I have ever implemented them.
Skills: Analytics And Coding
Duration: 2
College Name: IIT Kharagpur
Motivation: American Express is known to have a good working culture and is currently the third best company to work for in India. The internship stipend is largest compared to any other company in India along with accommodation and travel. The company has a well structured internship program and also has good challenging work to offer.
Funny Moments: After the test, I was not shortlisted for the interview round.. Which broke my heart.
Just after the presentation, I walked up to the person presenting and handed him a hard copy of my resume asking him to at least give me a shot at the interview if they think my profile is good enough.
I believe that this was a turning point of this entire experience. I believe, at that moment itself, I gained their favour to take me in. Which is probably why my interview was peaceful, which is probably why I could get through even though my interview was the last among a bunch of 25 students..

I appeared for an interview in Jan 2017.

Interview Questionnaire 

3 Questions

  • Q1. 1. Why do you want to join Citi?
  • Ans. 

    I want to join Citi because of its global presence, strong reputation, and opportunities for growth.

    • Citi is a global company with a presence in over 100 countries, which provides an opportunity to work with diverse teams and gain international exposure.

    • Citi has a strong reputation in the financial industry, known for its expertise and innovative solutions.

    • Citi offers excellent career development opportunities, includin...

  • Answered by AI
  • Q2. 2. Why do you want a career in banking? And not consulting or finance?
  • Ans. 

    I am interested in a career in banking because of the opportunities for growth, the dynamic nature of the industry, and my passion for financial analysis.

    • Opportunities for growth: Banking offers a wide range of career paths and opportunities for advancement. I am excited about the potential to develop my skills and progress within the industry.

    • Dynamic nature of the industry: Banking is constantly evolving, with new tec...

  • Answered by AI
  • Q3. 3. How has the Indian Economy performed in the past 2 years?
  • Ans. 

    The Indian economy has experienced mixed performance in the past 2 years.

    • GDP growth rate has fluctuated

    • Demonetization and GST implementation impacted the economy

    • Unemployment rate has been a concern

    • Inflation has remained relatively low

    • Foreign direct investment has increased

    • Agricultural sector faced challenges due to weather conditions

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: My resume had gotten shortlisted for the profile of an Analyst. This was the first stage.

Round: Group Discussion
Duration: 20 minutes

College Name: Lady Shri Ram College

DKSH Interview FAQs

How many rounds are there in DKSH interview?
DKSH interview process usually has 1-2 rounds. The most common rounds in the DKSH interview process are HR, Technical and One-on-one Round.
How to prepare for DKSH 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 DKSH. The most common topics and skills that interviewers at DKSH expect are Salesforce, Digital Marketing, Technical Sales, Key Account Management and Business Development.

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 5 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 610 Interviews
Citicorp Interview Questions
3.7
 • 584 Interviews
HSBC Group Interview Questions
3.9
 • 508 Interviews
American Express Interview Questions
4.1
 • 381 Interviews
UBS Interview Questions
3.9
 • 350 Interviews
Morgan Stanley Interview Questions
3.6
 • 305 Interviews
FactSet Interview Questions
3.8
 • 216 Interviews
BNP Paribas Interview Questions
3.8
 • 190 Interviews
View all

DKSH Reviews and Ratings

based on 53 reviews

3.7/5

Rating in categories

3.2

Skill development

3.9

Work-life balance

3.4

Salary

3.7

Job security

3.4

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 53 Reviews and Ratings
Assistant Manager
10 salaries
unlock blur

₹6.8 L/yr - ₹16 L/yr

Technical Sales Manager
7 salaries
unlock blur

₹13.9 L/yr - ₹21 L/yr

Assistant Sales Manager
5 salaries
unlock blur

₹9 L/yr - ₹14.6 L/yr

General Manager
5 salaries
unlock blur

₹40 L/yr - ₹51 L/yr

Senior Executive
5 salaries
unlock blur

₹5 L/yr - ₹6.6 L/yr

Explore more salaries
Compare DKSH with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Citicorp

3.7
Compare
write
Share an Interview