Upload Button Icon Add office photos

Filter interviews by

Karvy Stock Broking Interview Questions and Answers for Experienced

Updated 2 Jul 2024

Karvy Stock Broking Interview Experiences for Experienced

Popular Designations

4 interviews found

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Expected salary
  • Q2. In-depth knowledge

Python Developer Intern Interview Questions asked at other Companies

Q1. what is python? what is a list? what is a tuple? what is set? Difference between list and tuple. Class and object. lambda function. map function filter function inheritance deep copy and shallow copy what is a dictionary? monkey patching. w... read more
View answer (3)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Why you have choosen this role

Marketing Executive Interview Questions asked at other Companies

Q1. What is Service Scape ? After going through website, what do you think, how can we make better Servicescape for B2B marketplaces throgh Brandsmith Worldwide?
View answer (3)

I applied via Naukri.com and was interviewed before Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What will you feel if you aren't selected for this job . Why do you want to go in this particular field

Interview Preparation Tips

Interview preparation tips for other job seekers - All though this questions weren't too much tough but this questions were asked because they want to check my decision making ability .it is very important to be confident in your interview, even if you don't know the answer better to say I don't know rather than saying something wrong.
Communication matters a lot . Whatever position you are applying whichever company you are interviewing with , everybody looks for a person who communicates well and is confident of what he is saying.

Relationship Manager Interview Questions asked at other Companies

Q1. How will you market banking products ? Are you willing to work at the ground level ? What are the challenges of marketing at ground level ? How different is it from other kinds of marketing? What did you learn in mba with respect to marketi... read more
View answer (48)

I applied via Referral and was interviewed before Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Education, Family, Previous Work etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - In Karvy Stock Broking Ltd. I had been interviewed three to four times by different persons each time. I answered very well every time. They took my written exam after giving me some knowledge of work. I passed that too with great average. And then I was appointed.

Back Office Coordinator Interview Questions asked at other Companies

Q1. How will you handle your client if your documents lost ??
View answer (1)

Karvy Stock Broking interview questions for popular designations

 Equity Advisor

 (1)

 Python Developer Intern

 (1)

 Marketing Intern

 (1)

 Relationship Manager

 (1)

 Financial Analyst

 (1)

 Accounting Staff

 (1)

 Marketing Executive

 (1)

 Back Office Coordinator

 (1)

Interview questions from similar companies

I appeared for an interview before Oct 2021.

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 - Pairing 

(1 Question)

  • Q1. Assignment is given before hand and after that you'll have to pair with TW developer. While pairing, code smells/improvements are discussed
Round 3 - Technical 

(1 Question)

  • Q1. Questions related: to your last project to OOPS with system design

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your current project well and explain it in detailed manner.
Prepare for some system design questions and DS Algo

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Coding question of medium level difficulty, from DP. 
18 MCQs were core CSE related concepts e.g: OS, OOPs, DBMS, Networking
Time was 90 minutes.

  • Q1. 

    Minimum Cost to Destination

    You are given an NxM matrix consisting of '0's and '1's. A '1' signifies that the cell is accessible, whereas a '0' indicates that the cell is blocked. Your task is to compute ...

  • Ans. 

    Find the minimum cost to reach a destination in a matrix with blocked cells.

    • Use Breadth First Search (BFS) algorithm to explore all possible paths from the starting point to the destination.

    • Keep track of the cost incurred at each cell and update it as you move through the matrix.

    • Return the minimum cost to reach the destination or -1 if it is unreachable.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

It was an one-to-one interview. It checks your problem solving ability and a few OOPs, OS, DBMS etc concepts. Coding questions were related to array, queue and DP.

  • Q1. 

    Triangle Formation Using Array Elements

    Given an integer array/list ARR of length 'N', determine if it is possible to form at least one non-degenerate triangle using the values of the array as the sides o...

  • Ans. 

    Determine if it is possible to form a non-degenerate triangle using array elements as sides.

    • Check if the sum of any two sides is greater than the third side for all combinations of sides.

    • If the above condition is met for any combination, return true; otherwise, return false.

  • Answered by AI
  • Q2. 

    Maximum Sum of Non-Adjacent Elements

    You are given an array/list of integers. The task is to return the maximum sum of a subsequence such that no two elements in the subsequence are adjacent in the given ...

  • Ans. 

    Find the maximum sum of non-adjacent elements in an array.

    • Use dynamic programming to keep track of the maximum sum at each index, considering whether to include the current element or not.

    • At each index, the maximum sum can be either the sum excluding the current element or the sum including the current element but excluding the previous element.

    • Iterate through the array and update the maximum sum accordingly.

    • Example: F...

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

It was also a problem solving round. However after coding questions, they also asked CSE conceptual questions.

  • Q1. 

    Sum Tree Conversion

    Convert a given binary tree into its sum tree. In a sum tree, every node's value is replaced with the sum of its immediate children's values. Leaf nodes are set to 0. Finally, return th...

  • Ans. 

    Convert a binary tree into a sum tree by replacing each node's value with the sum of its children's values. Return preorder traversal.

    • Traverse the tree in a bottom-up manner, starting from the leaf nodes.

    • For each node, update its value to the sum of its children's values.

    • Set leaf nodes to 0.

    • Return the preorder traversal of the modified tree.

  • Answered by AI
  • Q2. What are the core concepts of indexing in Database Management Systems (DBMS)?
  • Ans. 

    Core concepts of indexing in DBMS include types of indexes, benefits of indexing, and factors affecting index performance.

    • Types of indexes: B-tree, Hash, Bitmap, etc.

    • Benefits of indexing: Faster data retrieval, improved query performance, reduced disk I/O.

    • Factors affecting index performance: Selectivity, clustering factor, index fragmentation.

    • Examples: Creating an index on a column in a table to speed up search queries

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology Delhi (New Campus). Eligibility criteria7 CGPAOYO interview preparation:Topics to prepare for the interview - Data Structures, OS, DBMS, Algorithms, Networking, Coding, OOPTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Strengthen your coding, algorithms. This is one most important thing for OYO. Practice Graph, tree, DP, greedy, recursion, data structures questions.
Tip 2 : OS, DBMS concepts will give you an edge over others. Like serialisation, index, deadlock, semaphore
Tip 3 : Only mention those projects in your resume which you are very clear about. They don't ask for detailed explanation, just an overall idea about your projects will increase your chances

Application resume tips for other job seekers

Tip 1 : Mention college projects wisely. No need to mention fancy projects. Any project that you can describe to the interviewer will be a best solution
Tip 2 : Neat & clean resume with your skills, technical stacks that you mastered. That's all. They don't require you to be very active in extra-curricular activities, and these things will not give you any advantage.
Tip 3 : Keep it of single page

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

7 Questions

  • Q1. “What is the difference u find between IIT and IIM?”…this was asked twice
  • Q2. BCG also asked given a choice between Mckinsey and BCG what will I choose
  • Q3. Again a lot from what i had learned in my Job
  • Q4. Again great focus on why consults and why not i-banks
  • Q5. General discussion was quite similar to the one at Mckinsey
  • Q6. Case on taxi-driver: A taxi driver in mUmbai is not earning enough, how will u help him. I anlaysed the case by workign from 2 sides i)how to reduce his cost i) How to increase his revenue
  • Q7. Case on a bank (yeah! another one! ) A bank had 5 branches in a city that were offering home loans. The bank took a decision to centralise the entire loan lending operation to the main branch. The number o...

Interview Preparation Tips

Round: Case Study Interview
Experience: Case on taxi-driver: A taxi driver in mUmbai is not earning enough, how will u help him.

I anlaysed the case by workign from 2 sides i)how to reduce his cost i) How to increase his revenue



-Revenue: i) I assumed the rate to be fixed, then said may be the locality in which he is operating is not appropriate.

Then the next point was, that he might be returning empty to his stand which is leading to wastge, maybe should tie-up with two stands and then return to the stand closest to his destination for a route. Thus preventing wastage.

Cost side: Identifying the elments: Fuel, Maintenance charges, Fee paid to the stand, and Depreciation (even after almost 2 course in MANAC this was the last thing that came to my mind;) )

Then it was about improving mileage, improving maintenance

The i said may be he can rent out the taxi in the night to increase his revenue.

I made the mistake of assuming that not much can be done with the fuel thing…which he later pointed out can be done by replacing diesel with CNG/LPG

Few more things that i dont recall, but this was pretty much the entire discussion.



Case on a bank (yeah! another one! ) A bank had 5 branches in a city that were offering home loans. The bank took a decision to centralise the entire loan lending operation to the main branch. The number of loan takers dropped drastically. What should the bank do?- This case had some number crunching….i think this one was only about asking different questions. I tried to approach the case from a marketing perspective but soon realised that it was an operations case and finally the reason came out to be less than required manpower.Nothing specific I remember about third round, fourth round was about making the offer.

General Tips: Key Observations across all consult interviews:i) very friendly setting (much beyond expectations)ii) great focus on understanding why consult and not i-bankiii) flow of interview very smooth with one thing leading to another, as in no abrupt change of topic.iv) the questions you ask them in the course of case discussion are as important as the answers you offer.
Skills: Case analysis
College Name: NA

Interview Questionnaire 

5 Questions

  • Q1. It started with Tell me about yourself
  • Q2. It started with what do you think about economists in general-which i think was because of my economics background
  • Q3. FMCG sector – biscuit manufacturing company – The market was growing but the market share of the company was falling
  • Q4. It started off with how I managed to make time for all my different extra-curricular . Case Study- Technology company wanting to expand in size. Suggest ways to tap the Indian education sector with the ava...
  • Q5. Case Study- Sri Lankan Financial services not doing too well. CEO of a company is perplexed and wants your advice

Interview Preparation Tips

Round: HR Interview
Experience: The usual norm in consulting interviews is to start each interview with a little HR before getting into the case solving – this usually begins with an ‘about me’ of the interviewer followed by the ‘tell me about yourself’ for the candidate.

Round: Case Study Interview
Experience: Some of the other questions that were asked- My biggest achievement,something that is not on my CV, how can your background in quizzing help you in consulting, about me home city, on my extra curricular activities and my experience at the London school of economics
Tips: Made a rapport with the interviewer,kept my structure in place all the time, asked all the relevant questions concerning one particular aspect of the business before moving to the next bucket,  also, i failed to “crack” the first case but i still got called for the second round – so it is not necessary to get to the final solution always but always keep your thoughts structured. I did quite well in the second and third case, reaching solutions and discussing implementations as well

General Tips: Iwas not asked a single question about the firm in any of the three rounds. Still – it is wise to be prepared with “why us ??” .Be confident and always smile, a smile really goes a long way,think out loud whenever you are coming up with the solution – show your thought process- don’t just scribble the numbers and then just say the final answer.the first thing I realized was that the interviewers are really looking to just have a nice conversation with you – it wont feel like an interview at all.Further- while practicing the cases – we try to solve the entire case in our head by laying out the entire structure and then asking question-but on the final day – the case structure was actually laid out by him- so he asked me to start by asking a few defining questions and setting up the problem statement, then he asked me to further probe various factors governing competition, following it up with a comparative cost study- so what i am trying to get across is that the case shall further be divided into “mini cases” – so they are just trying to see how you think for each segment…try being unique and extremely structured all the while.
Skills: case analysis, Economics
College Name: NA

Interview Questionnaire 

8 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a highly experienced consultant with a strong background in problem-solving and strategic planning.

    • Over 10 years of experience in consulting for various industries

    • Expertise in analyzing complex business problems and providing effective solutions

    • Proven track record of successfully leading teams and managing projects

    • Strong communication and presentation skills

    • Ability to build and maintain strong client relationships

    • ...

  • Answered by AI
  • Q2. Why Consulting
  • Ans. 

    Consulting offers diverse challenges, continuous learning, and the opportunity to make a significant impact.

    • Consulting allows me to work on a wide range of projects and industries, constantly expanding my knowledge and skills.

    • I enjoy solving complex problems and providing innovative solutions, which is a key aspect of consulting.

    • Being a consultant gives me the chance to work with different clients and teams, fostering ...

  • Answered by AI
  • Q3. Why BCG?
  • Ans. 

    BCG is a top consulting firm known for its prestigious clients, global reach, and innovative problem-solving approach.

    • BCG has a strong reputation in the consulting industry

    • BCG works with prestigious clients across various industries

    • BCG has a global presence with offices in multiple countries

    • BCG is known for its innovative problem-solving methodologies

    • BCG offers excellent career development opportunities

  • Answered by AI
  • Q4. Why should BCG make you an offer?
  • Ans. 

    BCG should make me an offer because of my extensive experience, strong analytical skills, and ability to deliver impactful results.

    • I have X years of experience in consulting, including working with top clients in various industries.

    • I have a proven track record of delivering successful projects and achieving measurable results.

    • I possess strong analytical and problem-solving skills, which are essential for identifying an...

  • Answered by AI
  • Q5. Some questions on my work experience and position of responsibility
  • Q6. Market Entry
  • Q7. Profit and Loss
  • Q8. Sales force Management

Interview Preparation Tips

Round: Case Study Interview
Tips: I messed up my cases big time. Don’t do that!

General Tips: Do the cases well. They matter a lot. Engage the interviewer and try your level best to convey and maintain a good impression throughout.
Skills: case analysis
College Name: NA

Interview Questionnaire 

5 Questions

  • Q1. I was asked some basic questions like Why should BCG take you
  • Q2. Why consulting
  • Q3. A cement manufacturer based out of Calcutta is facing a 20% drop in prices. How would you help them in increasing their prices by 10%
  • Ans. 

    To help the cement manufacturer increase prices by 10%, I would suggest implementing a strategic pricing strategy.

    • Analyze the market demand and competition to identify opportunities for price increase

    • Consider the cost structure and production efficiency to ensure the price increase is feasible

    • Develop a value proposition highlighting the unique features or benefits of the cement

    • Communicate the price increase to customer...

  • Answered by AI
  • Q4. A taxi driver in Delhi wants to switch to a Radio Taxi service. Help him out with his decision
  • Ans. 

    Switching to a radio taxi service in Delhi can provide numerous benefits for a taxi driver.

    • Radio taxi services offer a more professional and reliable experience for passengers.

    • Drivers can earn higher incomes through radio taxi services due to fixed fares and increased demand.

    • Radio taxi services often provide additional benefits such as insurance coverage and customer support.

    • By joining a radio taxi service, drivers can...

  • Answered by AI
  • Q5. A Sri Lankan life insurance provider is losing market share. Where is he going wrong and how can you help him out?
  • Ans. 

    The Sri Lankan life insurance provider is losing market share due to lack of customer-centric approach and outdated marketing strategies.

    • The provider should focus on understanding customer needs and preferences to offer tailored insurance solutions.

    • Implementing digital platforms and online services can enhance customer experience and accessibility.

    • Investing in targeted marketing campaigns and partnerships with local bu...

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: Some of the cases had one specific answer. But it is not possible to come down to that. For example there was a case where i was asked about whether a taxi driver should start working for a radio cab service such as Meru. So I compared both the businesses on profitability. But then he asked me that the owning his taxi is more profitable. So this meant that he would have to change his existing business. Then I addressed how he could increase his revenues by charging more or reduce cost by swithcing to CNG which was the answer. But giving other options as well also shows your option generation skills.

General Tips: Confidence, calmness and smiling throughout.Did the cases well. Handled stress and was cheerful right through the process.Be calm, fresh and confident in your approach.
Skills: case analysis
College Name: NA

Karvy Stock Broking Interview FAQs

How many rounds are there in Karvy Stock Broking interview for experienced candidates?
Karvy Stock Broking interview process for experienced candidates usually has 1 rounds. The most common rounds in the Karvy Stock Broking interview process for experienced candidates are HR.
How to prepare for Karvy Stock Broking interview for experienced candidates?
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 Karvy Stock Broking. The most common topics and skills that interviewers at Karvy Stock Broking expect are Consumer Research, Customer Service, Primary Research, .Net and C#.
What are the top questions asked in Karvy Stock Broking interview for experienced candidates?

Some of the top questions asked at the Karvy Stock Broking interview for experienced candidates -

  1. i have was asked to write an essay!! why the people's of India approach to fore...read more
  2. What do you know about stock marke...read more
  3. What do you know about capital marke...read more

Tell us how to improve this page.

Karvy Stock Broking Interview Process for Experienced

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 343 Interviews
Hetero Interview Questions
3.9
 • 232 Interviews
Oyo Rooms Interview Questions
3.3
 • 221 Interviews
IntouchCX Interview Questions
2.9
 • 199 Interviews
BCG Interview Questions
3.7
 • 198 Interviews
Globant Interview Questions
3.8
 • 175 Interviews
DTDC Express Interview Questions
3.7
 • 155 Interviews
Daikin Interview Questions
4.1
 • 153 Interviews
Landmark Group Interview Questions
4.0
 • 151 Interviews
ThoughtWorks Interview Questions
3.9
 • 149 Interviews
View all

Karvy Stock Broking Reviews and Ratings

based on 623 reviews

3.7/5

Rating in categories

3.5

Skill development

3.3

Work-life balance

3.1

Salary

3.3

Job security

3.3

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 623 Reviews and Ratings
Assistant Manager
217 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Equity Advisor
90 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Deputy Manager
71 salaries
unlock blur

₹2.3 L/yr - ₹8.5 L/yr

Relationship Manager
64 salaries
unlock blur

₹1.5 L/yr - ₹6.5 L/yr

Executive
55 salaries
unlock blur

₹1.6 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Karvy Stock Broking with

Home Credit Finance

4.1
Compare

Oyo Rooms

3.3
Compare

ITC Infotech

3.6
Compare

Hetero

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