Upload Button Icon Add office photos

Filter interviews by

Kivi Labs Interview Questions and Answers

Updated 27 Mar 2024

Kivi Labs Interview Experiences

3 interviews found

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

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself?

Medical Representative Interview Questions asked at other Companies

Q1. Explain Mechanism of action of certain drug's? Check out which Drug's are related Example Cardiac drug or Diabetes
View answer (16)

I applied via Referral

Round 1 - Group Discussion 

Job profile and job responsibilities of medical representative.

Round 2 - HR 

(3 Questions)

  • Q1. Why should we hire you?
  • Q2. Tell me about yourself.
  • Q3. Family background and salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Briefly about yourself and distribution of customer business wise.

Medical Representative Interview Questions asked at other Companies

Q1. Explain Mechanism of action of certain drug's? Check out which Drug's are related Example Cardiac drug or Diabetes
View answer (16)

Medical Representative Interview Questions & Answers

user image pawan kumar panday

posted on 18 Apr 2022

I applied via Referral and was interviewed in Oct 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 - One-on-one 

(2 Questions)

  • Q1. Some things about your self
  • Q2. Communication and skill

Interview Preparation Tips

Topics to prepare for Kivi Labs Medical Representative interview:
  • Sales
Interview preparation tips for other job seekers - Based on market experience and effort s a growth of company sale.

Medical Representative Interview Questions asked at other Companies

Q1. Explain Mechanism of action of certain drug's? Check out which Drug's are related Example Cardiac drug or Diabetes
View answer (16)

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Capital market question

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Senior Associate - Banking Operation Interview Questions & Answers

Zeta user image Anonymous

posted on 10 Jun 2022

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

I applied via Referral and was interviewed in Dec 2022. 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 - One-on-one 

(1 Question)

  • Q1. Can you describe your past experiences?
  • Ans. 

    I have over 5 years of experience in banking operations, including managing daily transactions, reconciliations, and customer inquiries.

    • Managed daily transactions and ensured accuracy

    • Performed reconciliations to identify discrepancies

    • Handled customer inquiries and resolved issues promptly

  • Answered by AI

I applied via Job Fair and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(7 Questions)

  • Q1. Tell me Something about Yourself? I think this is very simple question and everyone master's in this question
  • Ans. You are from different background like BCA, Btech why did you join Sales? In here you will get an idea about you are selected or not
  • Answered by Yashraj Sharma
  • Q2. What is the difference between sales and Marketing? Be prepared first understand which profile you applied and see others interview for same profile.
  • Q3. If you not achieve your target within a time then how would you handle it? In here interview check your presence of mind.
  • Q4. What is your Strength? Only talk about your strength only don't copy others strength because this question decide what was the other question interview will be asked.
  • Q5. What is your Weekness? If you have any Weekness then show that and also show how would you tackle it.
  • Q6. Where would you see yourself after 5 years? Here the interview know about your dream because everyone have dream like Some wants to become a Programmer.
  • Q7. Do you have any questions? In here you can ask something like your job profile how others people work.

Interview Preparation Tips

Interview preparation tips for other job seekers - So your should be different from others don't try to learn things because when you face a interview your mind will blank if you learn something previously. So be alert listen questions very carefully and answered by your own.

I was interviewed in Oct 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Started with basic introduction about myself and then 2 DSA problems to be solved on CodeChef or any IDE of your preference. Interviewer was helpful throughout the interview and helped with syntaxes at one point as well.
Parameters tested - 
1. Ability to think of edge test cases.
2. Coding Practices like naming variables and functions properly and using the most suitable access modifiers.
3. Ability to think of time and space complexity and optimise it.
Reaching the correct output was not mandatory but was preferred. Priority to coding practices was given.

  • Q1. 

    Next Greater Element Problem Statement

    You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater ele...

  • Ans. 

    The task is to find the next greater element for each element in the given array.

    • Iterate through the array from right to left.

    • Use a stack to keep track of the next greater element.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • If the stack is empty, there is no greater element, so assign -1.

    • If a greater element is found, assign it as the next greater element.

    • Push the current element ...

  • Answered by AI
  • Q2. 

    Zigzag Binary Tree Traversal Problem Statement

    Determine the zigzag level order traversal of a given binary tree's nodes. Zigzag traversal alternates the direction at each level, starting from left to rig...

  • Ans. 

    The zigzag level order traversal of a binary tree is the traversal of its nodes' values in an alternate left to right and right to left manner.

    • Perform a level order traversal of the binary tree

    • Use a queue to store the nodes at each level

    • For each level, alternate the direction of traversal

    • Store the values of the nodes in each level in separate arrays

    • Combine the arrays in alternate order to get the zigzag level order tra

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Started with basic introduction about myself and then 2 DSA problems to be solved on google doc. Interviewer was helpful throughout the interview.
Parameters tested - 
1. Ability to think of edge test cases.
2. Coding Practices like naming variables and functions properly and using the most suitable access modifiers.
3. Ability to think of time and space complexity and optimise it.
4. Making it to the correct output.

Reaching the correct output was mandatory in best possible time comlexity.

  • Q1. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Ans. 

    This is a problem where a sorted array is rotated and we need to search for given numbers in the array.

    • The array is rotated clockwise by an unknown amount.

    • We need to search for Q numbers in the rotated array.

    • If a number is found, we need to return its index, otherwise -1.

    • The search needs to be done in O(logN) time complexity.

    • The input consists of the size of the array, the array itself, the number of queries, and the q

  • Answered by AI
  • Q2. 

    K-th Element of Two Sorted Arrays

    You are provided with two sorted arrays, arr1 and arr2, along with an integer k. By merging all elements from arr1 and arr2 into a new sorted array, your task is to ident...

  • Ans. 

    The task is to find the kth smallest element of a merged array created by merging two sorted arrays.

    • Merge the two sorted arrays into a single sorted array

    • Return the kth element of the merged array

  • Answered by AI
Round 3 - HR 

Round duration - 40 minutes
Round difficulty - Easy

I was asked to introduce myself and general family background check and then discussion around salary negotiation.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Data Engineer in BangaloreEligibility criteriaDecent work experience (for SDE-1 1-2 years experience was expected), self projects in any domain,Sigmoid interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice popular questions from Arrays, Binary Trees, LinkedLists from CodeStudio's Interview Problems
Tip 2 : Make sure you are aware of calculating the time and space complexity for every problem you're coding.
Tip 3 : Prepare through Mock Interviews to practice explaining your approach while solving in an actual interview.

Application resume tips for other job seekers

Tip 1 : Describe best of your projects in minimum words. Don't forget to add buzz words like REST APIs/ DB Indexing/ Benchmarking etc if you worked on backend.
Tip 2 : Don't add school achievements like Olympiads or Class Topper in your resume.
Tip 3 : If you've some work experience, put it in a way ,you're marketing yourself. Add terms like 'Created/Owned the Project through entire SDLC' 
Tip 4 : Make sure you mention how your work experience actually impacted the company. Or how your self project can be actually useful to end user.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Do you have any prior experience?
  • Q2. What do you mean by human resources?
  • Ans. 

    Human resources refer to the people who make up the workforce of an organization and the management of their skills, knowledge, and abilities.

    • Human resources involve managing and developing the workforce of an organization

    • It includes recruitment, training, performance management, and employee relations

    • HR also deals with compensation and benefits, compliance with labor laws, and workplace safety

    • Effective HR practices ca...

  • Answered by AI
  • Q3. What can you tell us about country Inn?
  • Q4. What are your weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with answers of basic questions which you can find through internet.

I applied via Campus Placement and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Test was conducted on basic programming languages that consists of mcqs and coding questions

Round 2 - Group Discussion 

10-12 people are made into grps and are given a topic everyone has to support or oppose that particular topic within given time

Round 3 - Technical 

(1 Question)

  • Q1. Asked to write codes for given programs and also asked some puzzles and keywords and their uses in python like break , pass, continue, and slicing operation etc...
Round 4 - HR 

(5 Questions)

  • Q1. Why should we hire you?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
  • Q5. Everything went very well , main thing you require is communication skills. Hr is very friendly and even cracked jokes in middle. He asked about the movie I have seen lately and asked me to explain the sto...

Interview Preparation Tips

Interview preparation tips for other job seekers - Aptitude and logical questions are very important for written test whereas all the practical knowledge you have along with your communication skills can lead you to success.

Executive - Cost Control F&A Interview Questions & Answers

CMA CGM user image Anonymous

posted on 12 Jun 2021

Interview Questionnaire 

6 Questions

  • Q1. Tell me about your self ?
  • Q2. Describe job profile.
  • Q3. Asking job profile related questions.
  • Q4. Why are you left your current job ?
  • Q5. Are you comfortable for night shift & extension shift ?
  • Q6. Do you have questions for us ?

Kivi Labs Interview FAQs

How many rounds are there in Kivi Labs interview?
Kivi Labs interview process usually has 1-2 rounds. The most common rounds in the Kivi Labs interview process are One-on-one Round, Group Discussion and HR.

Tell us how to improve this page.

Kivi Labs Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 228 Interviews
Tiger Analytics Interview Questions
3.7
 • 220 Interviews
Fractal Analytics Interview Questions
4.0
 • 205 Interviews
Gramener Interview Questions
4.2
 • 12 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Algonomy Interview Questions
3.9
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

Kivi Labs Reviews and Ratings

based on 18 reviews

3.3/5

Rating in categories

2.6

Skill development

3.1

Work-life balance

2.7

Salary

2.5

Job security

3.0

Company culture

2.5

Promotions

2.6

Work satisfaction

Explore 18 Reviews and Ratings
Medical Representative
12 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Area Business Manager
5 salaries
unlock blur

₹4.6 L/yr - ₹5.2 L/yr

Area Sales Manager
4 salaries
unlock blur

₹3.6 L/yr - ₹4.5 L/yr

Medical Sales Representative
4 salaries
unlock blur

₹2.3 L/yr - ₹4.8 L/yr

Sales Executive
3 salaries
unlock blur

₹1.5 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Kivi Labs with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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