Upload Button Icon Add office photos

Filter interviews by

Khemani Distilleries Interview Questions and Answers

Updated 20 Jul 2024

Khemani Distilleries Interview Experiences

2 interviews found

HR Executive Interview Questions & Answers

user image Nikita Sharma

posted on 20 Jul 2024

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

I applied via Company Website and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic Hr questions
Round 2 - Aptitude Test 

HR aptitude test and Labor Laws

Interview Preparation Tips

Interview preparation tips for other job seekers - Good start up and Career Growth.

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

TSE - Territory Sales Executive Interview Questions & Answers

user image Anonymous

posted on 7 Mar 2022

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

(5 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why are you looking for a change?
  • Q3. What are your salary expectations?
  • Q4. What is your family background?
  • Q5. Share details of your previous job.
Round 3 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Your experience is knowledge to best interview in positive mind

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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 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 - Technical 

(2 Questions)

  • Q1. How to approach to a beginner to sell your product?
  • Ans. 

    Approach beginners by understanding their needs, explaining benefits, and offering support.

    • Start by asking questions to understand their needs and goals.

    • Explain how your product can help them achieve those goals.

    • Offer support and resources to help them get started.

    • Use simple language and avoid overwhelming them with too much information.

    • Provide clear instructions on how to use the product.

    • Offer a trial or demo to let t...

  • Answered by AI
  • Q2. How to address yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep yourself real.
Have some unofficial marketing experience.
Try your best to sell to people

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:
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 - 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 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.

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Aptitude and reasoning and verbal

Round 3 - Coding Test 

1.Write a program to print sum of digital of numbers.
2.what program to swap two numbers with out using the third variable.
3. If a number is divisible by 91,then print "Foo".if a number is divisible by 97 then print"bar",if a number is divisible 91 and 97 then print"Foo bar".

Round 4 - Technical 

(1 Question)

  • Q1. Self interdiction wich language is comfortable , what is c,class,object, built-in functions, call by value, and call by reference , what is data structures and what is inter face inheritance and finally as...

Interview Preparation Tips

Interview preparation tips for other job seekers - First coding part important and technical time intervewer ask questions only not answer elaborate with examples.all the best

Interview Questionnaire 

7 Questions

  • Q1. Tell me about your self
  • Q2. What you know about cmq cgm
  • Q3. Tell me about your educational background and family background
  • Q4. What is your working experience
  • Q5. Some questions related shipping marine transportations
  • Q6. What is container
  • Ans. 

    A container is a standardized unit of software that packages up code and all its dependencies so the application runs quickly and reliably from one computing environment to another.

    • Containers are lightweight and portable.

    • They allow for easy deployment and scaling of applications.

    • They isolate applications from the underlying infrastructure.

    • Examples of container technologies include Docker and Kubernetes.

  • Answered by AI
  • Q7. What is import and export
  • Ans. 

    Import and export refer to the movement of goods and services across international borders.

    • Import is the process of bringing goods or services into a country from another country.

    • Export is the process of sending goods or services from one country to another country.

    • Import and export are important for international trade and economic growth.

    • Examples of imported goods include electronics, clothing, and food products.

    • Exam...

  • Answered by AI

Skills evaluated in this interview

Khemani Distilleries Interview FAQs

How many rounds are there in Khemani Distilleries interview?
Khemani Distilleries interview process usually has 2-3 rounds. The most common rounds in the Khemani Distilleries interview process are HR, Resume Shortlist and Aptitude Test.
How to prepare for Khemani Distilleries 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 Khemani Distilleries. The most common topics and skills that interviewers at Khemani Distilleries expect are Business Development, Sales, FMCG Sales, Liquor and Attendance Management.

Tell us how to improve this page.

Khemani Distilleries Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Diageo Interview Questions
4.1
 • 66 Interviews
Pernod Ricard Interview Questions
3.7
 • 43 Interviews
Radico Khaitan Interview Questions
3.9
 • 22 Interviews
United Spirits Interview Questions
4.0
 • 13 Interviews
Globus Spirits Interview Questions
3.7
 • 11 Interviews
View all

Khemani Distilleries Reviews and Ratings

based on 22 reviews

3.6/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

2.9

Salary

2.8

Job security

3.2

Company culture

2.3

Promotions

3.2

Work satisfaction

Explore 22 Reviews and Ratings
Instrumentation Technician
5 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Territory Sales Executive
5 salaries
unlock blur

₹5 L/yr - ₹7 L/yr

Blending Executive
4 salaries
unlock blur

₹4 L/yr - ₹5.2 L/yr

Processing Manager
4 salaries
unlock blur

₹13.2 L/yr - ₹22.1 L/yr

Account Assistant
4 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Khemani Distilleries with

United Spirits

4.0
Compare

Radico Khaitan

3.9
Compare

Allied Blenders & Distillers

4.1
Compare

Pernod Ricard

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