Upload Button Icon Add office photos

Kaira

Compare button icon Compare button icon Compare

Filter interviews by

Kaira Interview Questions and Answers

Updated 19 Dec 2024

Kaira Interview Experiences

1 interview found

Interview Questions & Answers

user image Vivek Chakravarti

posted on 19 Dec 2024

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

Tell me your self introduction and basic family introduction

Interview questions from similar companies

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

Interview Questionnaire 

3 Questions

  • Q1. How much able to handle critical situation, how to increase sale ?
  • Ans. 

    I am highly capable of handling critical situations and have strategies to increase sales.

    • I have a strong problem-solving ability and can think quickly on my feet.

    • I am skilled at analyzing data and identifying areas for improvement in the sales process.

    • I have experience in developing and implementing effective sales strategies.

    • I am adept at building and maintaining relationships with clients, which can lead to increase...

  • Answered by AI
  • Q2. How to convence to customer for selling products?
  • Ans. 

    To convince a customer for selling products, it is important to understand their needs and provide a solution that meets those needs.

    • Listen actively to the customer's needs and concerns

    • Highlight the benefits and features of the product that meet their needs

    • Provide social proof such as customer testimonials or case studies

    • Offer a trial or demo to showcase the product's value

    • Address any objections or concerns the custome...

  • Answered by AI
  • Q3. How can u contribute to sale increase?
  • Ans. 

    I can contribute to sales increase by identifying potential customers, building strong relationships, and providing excellent customer service.

    • Identify potential customers through market research and networking

    • Build strong relationships with customers through regular communication and follow-up

    • Provide excellent customer service by addressing concerns and offering solutions

    • Offer promotions and discounts to incentivize p...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - During interview firstly listing questions to carefully, little more time think then give answer in positive wave with confidante

I applied via Walk-in and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Ranitidine used for?
  • Q2. Celecoxib used for?
  • Q3. Anti-bacterial drug
  • Q4. What is your project titled?
  • Q5. Method development and validation of anticancer drugs

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. How recruiting and selection differ each other.

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

Round 1 - HR 

(2 Questions)

  • Q1. They check communication
  • Q2. About your background
Round 2 - Aptitude Test 

Basic general knowledge about Mathematics and general knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowledge about sales and your skills and communication you past experience etc.

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before May 2021. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. What is your wark full kra
  • Ans. 

    My work full kra is to ensure efficient operations and customer satisfaction while meeting business goals.

    • Ensure smooth functioning of daily operations

    • Maintain high levels of customer satisfaction through effective communication and problem-solving

    • Meet business goals by analyzing data and implementing strategies

    • Train and develop team members to improve performance

    • Collaborate with other departments to achieve overall co

  • Answered by AI
  • Q2. What is your CTC and location
  • Q3. What is your company name
  • Q4. What is your expected CTC
  • Ans. 

    I am expecting a competitive salary package based on my experience and skills.

    • I am open to negotiation based on the company's policies and market standards.

    • My expected CTC is in line with my current salary and industry standards.

    • I am looking for a package that includes benefits such as health insurance, paid time off, and retirement plans.

    • I am willing to discuss my expected CTC in detail during the interview process.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Full kRA with description and tcode

I applied via Referral and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical Questions (SQL and Python)
  • Q2. Business case studies

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up SQL skills, learn different methods of solving the same problem, learn basics of python, especially Pandas and Numpy

I applied via Referral and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. It is relevant to area where you are expertises and for position you applied for
  • Q2. Relevant to position

Interview Preparation Tips

Interview preparation tips for other job seekers - Really good company and can enjoy myntra benefits a lot .

Kaira Interview FAQs

How many rounds are there in Kaira interview?
Kaira interview process usually has 1 rounds. The most common rounds in the Kaira interview process are Aptitude Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Reliance Retail Interview Questions
3.9
 • 1.6k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Tata Group Interview Questions
4.2
 • 359 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Titan Company Interview Questions
4.3
 • 151 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
Bata Interview Questions
3.7
 • 61 Interviews
View all

Kaira Reviews and Ratings

based on 6 reviews

4.8/5

Rating in categories

4.2

Skill development

4.4

Work-life balance

4.4

Salary

4.2

Job security

4.3

Company culture

4.1

Promotions

4.3

Work satisfaction

Explore 6 Reviews and Ratings
Cluster Manager
7 salaries
unlock blur

₹3.6 L/yr - ₹5 L/yr

Store Manager
5 salaries
unlock blur

₹2.6 L/yr - ₹3.6 L/yr

Retail Store Manager
4 salaries
unlock blur

₹2.5 L/yr - ₹3.4 L/yr

Explore more salaries
Compare Kaira with

Nykaa

3.5
Compare

Myntra

4.0
Compare

Flipkart

4.0
Compare

Amazon

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