Upload Button Icon Add office photos

Filter interviews by

Kapoor Lamp Shade Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Explain SCD Type 2 Implementation in Informatica
  • Ans. 

    SCD Type 2 is a technique used to track historical changes in data over time in a data warehouse.

    • SCD Type 2 maintains a separate row for each change in data, with a start and end date.

    • It requires a surrogate key to uniquely identify each row.

    • Informatica provides a built-in SCD Type 2 transformation to implement this technique.

    • Example: tracking changes in customer addresses over time.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly focus on basic BI terminologies, common to trivial scenarios and introductory information on latest trending tools and technologies.

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Interview Questionnaire 

1 Question

  • Q1. Mainly about sql, previous job role

Interview Questionnaire 

1 Question

  • Q1. How to do sales
  • Ans. 

    Sales is the process of identifying potential customers, understanding their needs, and persuading them to purchase a product or service.

    • Identify potential customers through market research and lead generation

    • Understand the needs and pain points of customers by asking probing questions and active listening

    • Present the product or service in a compelling way, highlighting its features and benefits

    • Address any objections or...

  • Answered by AI

I appeared for an interview before Jan 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

The round was held on Google Meet and I was given 2 coding problems for which first I had to explain my approach and then I had to write code in Shared Google Docs and dry run on sample test cases and discuss Time and Space Complexity.

  • Q1. 

    Validate BST Problem Statement

    Given a binary tree with N nodes, determine whether the tree is a Binary Search Tree (BST). If it is a BST, return true; otherwise, return false.

    A binary search tree (BST)...

  • Ans. 

    Validate if a given binary tree is a Binary Search Tree (BST) or not.

    • Check if the left subtree of a node contains only nodes with data less than the node's data.

    • Check if the right subtree of a node contains only nodes with data greater than the node's data.

    • Recursively check if both left and right subtrees are also binary search trees.

  • Answered by AI
  • Q2. 

    Maximum Sum Path from Leaf to Root

    Given a binary tree with 'N' nodes, identify the path from a leaf node to the root node that has the maximum sum among all root-to-leaf paths.

    Example:

    All the possibl...

  • Ans. 

    Find the path from a leaf node to the root node with the maximum sum in a binary tree.

    • Traverse the binary tree from leaf to root while keeping track of the sum of each path.

    • Compare the sums of all paths and return the path with the maximum sum.

    • Use recursion to traverse the tree efficiently and keep updating the maximum sum path.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was also a Data Structures and Algorithms round where I was asked to solve 2 coding problems explaining my approach with proper Complexity Analysis . After the coding questions were over there was some time left so the interviewer asked me some concepts related to DBMS.

  • Q1. 

    Next Permutation Problem Statement

    You are given a permutation of 'N' integers. A sequence of 'N' integers is considered a permutation if it includes all integers from 1 to 'N' exactly once. Your task is ...

  • Ans. 

    The task is to rearrange a given permutation of 'N' integers to form the lexicographically next greater permutation.

    • Iterate from right to left to find the first element that is smaller than the element to its right.

    • Swap this element with the smallest element to its right that is greater than it.

    • Reverse the elements to the right of the swapped element to get the lexicographically next greater permutation.

  • Answered by AI
  • Q2. 

    Largest BST Subtree Problem Statement

    You are given a binary tree with 'N' nodes. Your task is to determine the size of the largest subtree within the binary tree which is also a Binary Search Tree (BST).

    ...
  • Ans. 

    Find the size of the largest subtree in a binary tree that is also a Binary Search Tree.

    • Traverse the tree in a bottom-up manner to check if each subtree is a BST.

    • Keep track of the size of the largest BST subtree encountered so far.

    • Use recursion to solve this problem efficiently.

    • Example: For the input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1, the largest BST subtree has a size of 3.

  • Answered by AI
  • Q3. Can you explain indexing in databases?
  • Ans. 

    Indexing in databases is a technique used to improve the speed of data retrieval by creating a data structure that allows for quick lookups.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition.

    • Types of indexes include B-tree, hash, and bitmap indexes.

    • Indexes can improve the performance of SELECT queries but may slow down INSERT, UPDATE, and DELETE operation...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This round also had 2 questions related to DS and Algo . One was from graphs and the other was an implementation of a LRU Cache . There were 2 interviewers and both of them were quite friendly and helpful. Overall, this round went well.

  • Q1. 

    Detect Cycle in a Directed Graph

    You are provided with a directed graph composed of 'N' nodes. You have a matrix called 'EDGES' with dimensions M x 2, which specifies the 'M' edges in the graph. Each edge...

  • Ans. 

    Detect cycle in a directed graph using depth-first search (DFS) algorithm.

    • Use DFS to traverse the graph and detect back edges (edges that point to an ancestor node).

    • Maintain a visited array to keep track of visited nodes and a recursion stack to keep track of nodes in the current path.

    • If a back edge is found during traversal, a cycle exists in the graph.

    • Return true if a cycle is detected, false otherwise.

  • Answered by AI
  • Q2. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Use a combination of hashmap and doubly linked list to efficiently implement the LRU cache.

    • Keep track of the least recently used item and update it accordingly when inserting new items.

    • Ensure to handle the capacity constraint by evicting the least recently used item when the cache is full.

    • Implement get(...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFlipkart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Manpower management.
  • Q2. You have experienced about to handle union base manpower.
  • Q3. Technical question.
  • Q4. You must have sound technical knowledge about your field.
  • Q5. Process related.
  • Q6. You must be good in the process as well as system.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall, good and excellent.

I applied via Recruitment Consultant and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. About last experience
  • Q2. About e-commerce industry

Interview Preparation Tips

Interview preparation tips for other job seekers - Use common sense during the interview.

I applied via Referral and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me abt yourself
  • Q2. Achievements in past

Interview Preparation Tips

Interview preparation tips for other job seekers - Give your best, go in a flow , talk truth

I applied via Naukri.com and was interviewed before May 2021. There were 4 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. Experience related and expectations from JD
  • Q2. Project Handling and six Sigma
Round 3 - One-on-one 

(2 Questions)

  • Q1. Management skills and Auditing skills
  • Q2. Training skills of process, Product, Gateway Reviews
  • Ans. 

    I have strong training skills in process, product, and gateway reviews.

    • I have experience in designing and delivering training programs for various processes and products.

    • I have conducted gateway reviews to ensure that the team is meeting the required standards.

    • I have used various training methods such as classroom training, on-the-job training, and e-learning.

    • I have also developed training materials such as manuals, pr...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary Expectations and negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be bold enough to crack it

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process is very smooth.. Thanks to HR

I applied via Company Website and was interviewed in May 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SQL, Business cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with examples for each of the 14 principles

Kapoor Lamp Shade Interview FAQs

How to prepare for Kapoor Lamp Shade 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 Kapoor Lamp Shade. The most common topics and skills that interviewers at Kapoor Lamp Shade expect are Filing, Accounting, Boq, Computer Knowledge and Finance.

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.1k Interviews
Flipkart Interview Questions
3.9
 • 1.4k Interviews
Asian Paints Interview Questions
4.0
 • 656 Interviews
Senco Gold Interview Questions
4.5
 • 562 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
BigBasket Interview Questions
3.9
 • 363 Interviews
Tata Group Interview Questions
4.2
 • 362 Interviews
Meesho Interview Questions
3.7
 • 334 Interviews
View all

Kapoor Lamp Shade Reviews and Ratings

based on 15 reviews

2.6/5

Rating in categories

2.6

Skill development

3.3

Work-life balance

3.1

Salary

2.6

Job security

2.6

Company culture

2.0

Promotions

2.6

Work satisfaction

Explore 15 Reviews and Ratings
Sales Manager
4 salaries
unlock blur

₹6 L/yr - ₹8.2 L/yr

Senior Manager
4 salaries
unlock blur

₹12 L/yr - ₹14 L/yr

Purchase Manager
4 salaries
unlock blur

₹5 L/yr - ₹10.9 L/yr

Assistant Manager
3 salaries
unlock blur

₹3.3 L/yr - ₹7 L/yr

Sales Executive
3 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Explore more salaries
Compare Kapoor Lamp Shade with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Mahindra & Mahindra

4.1
Compare

Asian Paints

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