Upload Button Icon Add office photos

Filter interviews by

Superset Interview Questions and Answers

Updated 22 Apr 2020

Superset Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Oct 2019. There were 7 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Find out the k th max number
  • Ans. 

    To find the kth max number in an array

    • Sort the array in descending order

    • Return the kth element from the sorted array

  • Answered by AI
  • Q2. Design zomato
  • Ans. 

    Zomato is a food delivery and restaurant discovery platform.

    • Users can search for restaurants based on location, cuisine, and price range.

    • Restaurants can create profiles and list their menus.

    • Users can order food for delivery or pickup.

    • Zomato offers reviews and ratings from other users.

    • Zomato also offers a loyalty program for frequent users.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science-related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first off-campus interview, and I think I did pretty well for a fresher. You need to stay calm and should apply the presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Very basic aptitude test. basic aptitude mcqs are there

Round 2 - Technical 

(1 Question)

  • Q1. Technical interview round was not that hard, easy to crack
Round 3 - Assignment 

There was one assignment given on talent acquisition topic.

Round 4 - HR 

(1 Question)

  • Q1. Basic HR interaction round. HR asked some questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - no need to worry about technical interview just be yourself and ans as much questions you can, if not able to give answer then simply say I don't recall.

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

Round 1 - HR 

(1 Question)

  • Q1. Self introduction that's all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and essay writing

I applied via Referral and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell about your self then recently which movie you saw translate that movie in English there is only 1 Round but it's around 1hour's

Interview Preparation Tips

Interview preparation tips for other job seekers - Very very bad Company ever visited in my whole life. I waited till 7hrs and He Rejected me saying they want someone who studied at Oxford University.The guy looks like black mamba and bald. he is saying whatever movie you saw recently translate in English because our company is highly rated so we want some one who is very professional he has taken an interview like around 1 hr. As per my views don't ever visit this shit 💩💩💩 Zepto and this company is Bpo they are saying back office but this is a Bpo It's a startups No proper tL no Hr nothing just a fish market . Plus bonus No parking lot for vehicle. whatever I write is Genuine Don't ever go this shit company.

Interview Questionnaire 

6 Questions

  • Q1. Introduce Yourself.
  • Ans. I, Shubham Kumar Kushwaha, live in Lucknow, Uttar Pradesh. My father name is Sanjay Kumar Kushwaha and I complete Graduation form University of Lucknow in 2019.
  • Answered Anonymously
  • Q2. Aapne Isse phle kha job ki hai?
  • Ans. Teaching as a English Teacher of Class 10th in SLG Public School.
  • Answered Anonymously
  • Q3. Aapne teaching ki job kyo chhodi?
  • Q4. Due To Corona. School were closed.
  • Q5. Aapko medicine ki knowledge hai?
  • Ans. I replied that I have knowledge of medicine used in Daily life.
  • Answered Anonymously
  • Q6. What is Cross Cheque?
  • Ans. 

    A cross cheque is a type of cheque that has two parallel lines drawn across its face, indicating that it can only be deposited into the bank account of the payee.

    • A cross cheque is a safer form of payment as it cannot be cashed by anyone other than the intended recipient.

    • The two parallel lines on a cross cheque can be either general or special crosses.

    • A general cross cheque can only be deposited into a bank account, whi...

  • Answered by AI

I was interviewed in May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

Test Description/Instruction as Mentioned on the portal and mail :

1) The test will consist of 3 algorithmic problems.
2) The test time is 1.5 hours in which you will need to solve the 3 problems. The test link will be active from 10:00 AM onwards.
3) Please do not change the tabs since all the actions will be recorded and logged.

  • Q1. 

    Flood Fill Algorithm Task

    Assist Ninja in altering the color of a specific region in his photo. Given the image as a 2D array where each pixel is a positive integer, update the color of a specified pixel ...

  • Ans. 

    The Flood Fill Algorithm is used to change the color of a particular region in an image and all its adjacent same-colored pixels.

    • The image is represented as a 2D array of positive integers

    • The starting pixel and new color are given

    • Adjacent pixels are connected in up, down, left, or right directions

    • Diagonal pixels are not considered adjacent

    • Implement the Flood Fill Algorithm to replace the color of the given pixel and it...

  • Answered by AI
  • Q2. 

    Kruskal’s Minimum Spanning Tree Algorithm Problem Statement

    You are given a connected undirected weighted graph. Your task is to determine the weight of the minimum spanning tree of this graph.

    A minimum...

  • Ans. 

    The task is to find the weight of the minimum spanning tree of a given connected undirected weighted graph.

    • Implement Kruskal's algorithm to find the minimum spanning tree

    • Use a disjoint set data structure to keep track of connected components

    • Sort the edges in non-decreasing order of their weights

    • Iterate through the sorted edges and add them to the minimum spanning tree if they don't create a cycle

    • Return the sum of weigh

  • Answered by AI
  • Q3. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    The task is to implement the merge sort algorithm to sort a given sequence of numbers in non-descending order.

    • Merge sort is a divide and conquer algorithm that recursively divides the input array into two halves until the size becomes 1.

    • Then it merges the two sorted halves to produce a single sorted array.

    • The time complexity of merge sort is O(n log n), where n is the size of the input array.

    • The algorithm is efficient ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BangaloreEligibility criteriaNo criteriaShareChat interview preparation:Topics to prepare for the interview - DSA, React, Javascript, DBMS, OS, NetworksTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 300 Questions on leetcode (150 easy, 100 medium and 50 hard )
Tip 2 : Make atleast one big project which includes (DB, backend and frontend). Because in Hiring Manager round we have to discuss our resume for about 45mins to 1 Hr so having 1 or 2 big projects on the resume is always good to have otherwise HM will go towards core subjects Like OOP/OS/Networks which are often tricky.
Tip 3 : Think out of the box while solving a Question think of all the variants in which this questions can be asked. Let's take an example of simple question like two sum here we have to find a pair in an array whose sum is equal to given value. Now what if Interviewer asked to find three numbers instead of 2 or maybe find k numbers whose sum is equal to a given number. So it is always good to think out of the box and generalise the solution.
Tip 4 : Always try to solve each question in different ways. You should know both the bruteforce solution and the optimal one.
Tip 5 : When you solve a Question try to learn as much possible from a single Question for eg if you try to solve a Tree question then it is good to know both the iterative and recursive solution as sometimes Interviewer may introduce some constraints that due to huge test case recursive solution is not possible.
Tip 6 : 3-4 days before the interview start preparing using interviewbit as it contains all the important questions topic wise. I usually solve Interviewbit before the interview. No doubt Leetcode is good in terms of UI, Test cases and Easy to use but Interviewbit is more organised. I myself have done all the Interviewbit Questions multiple times.

Application resume tips for other job seekers

Tip 1 : Try to add Experience at the top with detailed explanation of work done by you 
Tip 2 : If No Experience: try to add more and more personal projects with the skills required in JD
Tip 3 : If No projects and Experience: Try to add Coding profiles, Achievements (Hackathons and Coding Competitions )

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Instahyre and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Given sorted array count the number of occurrences of given element.
  • Ans. 

    Count occurrences of given element in a sorted array.

    • Use binary search to find the first and last occurrence of the element.

    • Subtract the indices to get the count of occurrences.

    • Handle edge cases like element not present in array.

  • Answered by AI
  • Q2. Given Binary tree print the path having largest sum
  • Ans. 

    Given a binary tree, find the path with the largest sum of node values.

    • Use depth-first search to traverse the tree and keep track of the current path sum.

    • At each node, compare the current path sum with the maximum path sum seen so far.

    • Return the path with the maximum sum.

    • If the tree is empty, return an empty path.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied through instahyre and got call from HR.
I exited in first round only.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Can I handled all type of machines in biochemistry haematology microbiology
  • Q2. Yes I have told them all machines name and how to operate them

Interview Preparation Tips

Interview preparation tips for other job seekers - Alws be confident during interview

Interview Questionnaire 

1 Question

  • Q1. Why is English needed in India when our language is Hindi

Interview Preparation Tips

Interview preparation tips for other job seekers -
Tell me something about your self?
Tell me something about last company experience?
Tell me something about your school life ?
Tell me something about your favourite destination and why?
Tell me something about Your last trip ?
How did you celebrate your Last birthday ?
Salary expectations.

Did you travel gurgaon?

Are you confertable for rotationap shift?

1. Customer Service
Customer service BPOs (business processing outsourcers) are companies that specialize in handling customer queries that come in via email, chat, phone, social media, and other channels. Studies show that customers whose problems are solved quickly and easily tend to be faithful to the company.

2. Customer Service Representative
A customer service representative is an individual who interacts with customers on behalf of the company, usually to address their concerns.
3. Customer Obsessions
When a company treats its own customer to be God
Customer obsession describes organizations that continuously add value to the customer experience. These companies collect feedback regularly and prioritize customer needs in every business goal. They're more concerned with retaining and delighting existing customers than acquiring new ones.

4. BPO
Business process outsourcing (BPO) is a method of subcontracting various business-related operations to third-party vendors.

ASO Interview Questions & Answers

BlackBuck user image Anonymous

posted on 10 Mar 2021

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me your self.
  • Q2. What do you know about sales?
  • Ans. 

    Sales involves the process of identifying potential customers, convincing them to buy a product or service, and closing the deal.

    • Sales is about building relationships with customers

    • It involves identifying customer needs and offering solutions

    • Effective communication and negotiation skills are essential

    • Sales can be done through various channels such as face-to-face, phone, email, or online

    • Sales metrics such as conversion

  • Answered by AI
  • Q3. Previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Sharp in English during interview.knowledge of sales,market,and transportation.

Superset Interview FAQs

How to prepare for Superset 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 Superset. The most common topics and skills that interviewers at Superset expect are B2B Sales, Communication Skills, Sales, Business Development and Cold Calling.
What are the top questions asked in Superset interview?

Some of the top questions asked at the Superset interview -

  1. find out the k th max num...read more
  2. Design zom...read more

Tell us how to improve this page.

Superset Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
Swiggy Interview Questions
3.8
 • 424 Interviews
View all

Superset Reviews and Ratings

based on 7 reviews

3.5/5

Rating in categories

3.4

Skill development

4.3

Work-life balance

4.2

Salary

3.4

Job security

4.4

Company culture

3.3

Promotions

4.0

Work satisfaction

Explore 7 Reviews and Ratings
Business Development Manager
9 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Senior Business Development Manager
5 salaries
unlock blur

₹13 L/yr - ₹15 L/yr

Digital Marketing Manager
5 salaries
unlock blur

₹8.2 L/yr - ₹9.5 L/yr

Customer Success Manager
5 salaries
unlock blur

₹7 L/yr - ₹13.8 L/yr

Software Development Engineer
4 salaries
unlock blur

₹15 L/yr - ₹39.2 L/yr

Explore more salaries
Compare Superset with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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