Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Sequoia Group Team. If you also belong to the team, you can get access from here

Sequoia Group Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sequoia Group Interview Questions and Answers

Updated 26 Sep 2024

Sequoia Group Interview Experiences

Popular Designations

7 interviews found

Sdet Engineer Interview Questions & Answers

user image 1NH21CS272 _Kothepalle_Chethana

posted on 18 Jun 2024

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

I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding questions related to oops, dbms, predicting the output, time complexity and etc

Round 2 - Technical 

(2 Questions)

  • Q1. Bubble sort using recursion
  • Ans. 

    Bubble sort using recursion is a sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

    • Define a recursive function that takes an array of strings as input

    • Base case: if the array length is 1, return the array

    • Recursive case: compare adjacent elements and swap if necessary, then recursively call the function with the updated array

    • Repeat the proc

  • Answered by AI
  • Q2. Reversing strings using different methods
  • Ans. 

    Different methods to reverse strings in an array

    • Use built-in functions like reverse() in JavaScript

    • Iterate through each string and reverse characters manually

    • Use recursion to reverse each string

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Questions related to testing
  • Q2. Logical questions which are related to testing

Interview Preparation Tips

Topics to prepare for Sequoia Group Sdet Engineer interview:
  • Dbms
  • Java
  • logical reasoning
  • aptitude

Skills evaluated in this interview

Sdet Engineer Interview Questions asked at other Companies

Q1. Tell me about the projects and knowledge on selenium api and etc?
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 4 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 - Technical 

(1 Question)

  • Q1. It was a hood discussion basic tableau and SQL questions were asked
Round 3 - Technical 

(1 Question)

  • Q1. More focused on logical thinking and how to model data and analyse.
Round 4 - Behavioral 

(2 Questions)

  • Q1. And this round was taken by so called CTO of the organisation. I must say he is not eligible for this position. He is a CTO and sounded non technical more. The questions asked by him were very silly. Que...
  • Q2. Asked about tools i used where he literally have no idea.

Interview Preparation Tips

Interview preparation tips for other job seekers - HR process was good and the way feedback given was detailed and professional. Company might be good but not CTO.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Was asked to reverse linked list k elements at a time. It was ok to use an editor.

Round 2 - System design 

(1 Question)

  • Q1. Asked about the challenges you faced. Interviewer did not have the patience and ended the interview 10 mins earlier.

Team Leader (Technical) Interview Questions asked at other Companies

Q1. What is OSG what is v3f What DBG Divert wheel U r V shape best What will take in first site visit and what will customer side need What is use of divert wheel What is sap technology How is lop and cop working
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. LC medium questions are asked

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

Sequoia Group interview questions for popular designations

 Software Development Engineer II

 (2)

 Team Leader (Technical)

 (1)

 Software Development Engineer

 (1)

 Data Visualization Analyst

 (1)

 Sdet Engineer

 (1)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Instahyre and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

90 minutes.
Problem on graph - Evaluate division (leetcode).
Binary Search Problem.

Round 2 - Technical 

(2 Questions)

  • Q1. Database schema
  • Q2. Design instagram database
  • Ans. 

    Design a database for Instagram platform.

    • Create tables for users, posts, comments, likes, followers, etc.

    • Use primary keys and foreign keys to establish relationships between tables.

    • Store user information such as username, email, password, profile picture, etc.

    • Store post information such as image, caption, likes, comments, etc.

    • Implement indexing for faster retrieval of data.

    • Consider scalability and performance in databa

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Behavorial Questions

Skills evaluated in this interview

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Leetcode questions were asked, mostly easy, medium
  • Q2. Leetcode easy / medium questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and collected when answering the questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Triplets with given sum
  • Ans. 

    Find all unique triplets in an array that sum up to a given target value.

    • Sort the array first to easily identify duplicates.

    • Use two pointers approach to find the triplets.

    • Skip duplicates to avoid duplicate triplets.

    • Example: Given array [1, 2, 3, 4, 5] and target sum 8, output should be ['1, 3, 4'].

  • Answered by AI
  • Q2. Basic Tree Question
Round 2 - One-on-one 

(2 Questions)

  • Q1. Design a like and comments system
  • Ans. 

    Design a like and comments system for a social media platform

    • Use a relational database to store user likes and comments

    • Implement a feature to allow users to like posts and comments

    • Include a feature to display the number of likes and comments on each post

    • Allow users to comment on posts and reply to comments

    • Implement a notification system for users to be notified of new likes and comments on their posts

  • Answered by AI
  • Q2. Basic design question
Round 3 - One-on-one 

(1 Question)

  • Q1. This round was with CTO - It had basic questions regarding my previous job

Skills evaluated in this interview

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

Interview questions from similar companies

I appeared for an interview in Feb 2017.

Interview Questionnaire 

1 Question

  • Q1. Why did you choose marketing as your specialization?
  • Ans. 

    I chose marketing as my specialization because of my passion for creativity, consumer behavior, and strategic thinking.

    • Passion for creativity and innovation in developing marketing campaigns

    • Interest in understanding consumer behavior and psychology to create effective strategies

    • Enjoyment of analyzing market trends and competition to make informed decisions

    • Desire to work in a dynamic and fast-paced industry that allows

  • Answered by AI

Interview Preparation Tips

Skills: Communication And Confidence

I appeared for an interview in Dec 2016.

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and detail-oriented analyst with a strong background in data analysis and problem-solving.

    • I have a Bachelor's degree in Statistics and experience in analyzing large datasets

    • I am proficient in using statistical software such as R and Python

    • I have a proven track record of identifying trends and providing actionable insights to drive business decisions

  • Answered by AI
  • Q2. How does Insurance companies work ?
  • Ans. 

    Insurance companies work by providing financial protection to individuals or organizations against potential risks or losses.

    • Insurance companies collect premiums from policyholders in exchange for coverage.

    • They assess risks and determine the appropriate premiums to charge based on factors such as age, health, and occupation.

    • Insurance companies invest the collected premiums to generate income and ensure they have suffic...

  • Answered by AI
  • Q3. Who is an actuary and what are his roles ?
  • Ans. 

    An actuary is a professional who assesses and manages financial risks using mathematics, statistics, and business knowledge.

    • Analyzing data to calculate probabilities of events such as death, sickness, injury, and property loss

    • Designing insurance policies and pension plans based on risk assessments

    • Helping companies make informed decisions on managing risks and setting premiums

    • Advising on investment strategies to ensure ...

  • Answered by AI
  • Q4. What is India's GDP and its growth rate ?
  • Ans. 

    India's GDP is $2.7 trillion with a growth rate of 4.2%.

    • India's GDP is one of the largest in the world.

    • As of 2020, India's GDP was $2.7 trillion.

    • The growth rate of India's GDP in 2020 was 4.2%.

    • India's GDP growth rate has been fluctuating over the years.

    • The COVID-19 pandemic had a significant impact on India's GDP growth.

  • Answered by AI
  • Q5. What are the Pros and Cons of Demonetization ?
  • Ans. 

    Demonetization has pros and cons that impact various aspects of the economy and society.

    • Pros: Curbing black money, reducing corruption, promoting digital transactions

    • Cons: Initial economic disruption, inconvenience to the public, impact on informal sector

    • Example of a pro: Demonetization helped uncover undisclosed income and led to an increase in tax compliance.

    • Example of a con: Small businesses and daily wage workers f

  • Answered by AI
  • Q6. If there are two data sets each with 100 variables and having 10000 and 12000 policies verify the validity of the second data set assuming the first one is accurate.
  • Ans. 

    The validity of the second data set can be verified by comparing it with the first data set.

    • Compare the variables in both data sets to ensure they are the same.

    • Check if the number of policies in the second data set matches the number stated.

    • Perform statistical analysis on both data sets to identify any discrepancies or inconsistencies.

    • Validate the accuracy of the second data set by cross-referencing it with external so

  • Answered by AI
  • Q7. Why do you want to work as an analyst ?
  • Ans. 

    I am passionate about analyzing data and deriving insights to drive informed decision-making.

    • I enjoy problem-solving and critical thinking, which are essential skills for an analyst.

    • I have a strong attention to detail and excel at organizing and interpreting complex information.

    • I am interested in utilizing data to identify trends, patterns, and opportunities for improvement.

    • I believe that my analytical skills can contr...

  • Answered by AI

Interview Preparation Tips

College Name: IIT Madras

I applied via Campus Placement and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. General questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Its good experience and easy to crack the questions.

Sequoia Group Interview FAQs

How many rounds are there in Sequoia Group interview?
Sequoia Group interview process usually has 2-3 rounds. The most common rounds in the Sequoia Group interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Sequoia Group 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 Sequoia Group. The most common topics and skills that interviewers at Sequoia Group expect are SAN, Relationship Building, Agile, Consulting and Python.
What are the top questions asked in Sequoia Group interview?

Some of the top questions asked at the Sequoia Group interview -

  1. Reversing strings using different meth...read more
  2. Bubble sort using recurs...read more
  3. Design a like and comments sys...read more

Tell us how to improve this page.

Sequoia Group Interview Process

based on 8 interviews

Interview experience

4.3
  
Good
View more

Sequoia Group Reviews and Ratings

based on 15 reviews

3.5/5

Rating in categories

2.9

Skill development

3.2

Work-life balance

3.8

Salary

3.1

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 15 Reviews and Ratings
Product Manager
5 salaries
unlock blur

₹28 L/yr - ₹30 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹38 L/yr - ₹45 L/yr

Data Engineer
4 salaries
unlock blur

₹12 L/yr - ₹27.5 L/yr

Software Development Engineer II
4 salaries
unlock blur

₹26 L/yr - ₹29 L/yr

Senior Data Engineer
4 salaries
unlock blur

₹46 L/yr - ₹56 L/yr

Explore more salaries
Compare Sequoia Group with

HDFC Life

4.0
Compare

ICICI Prudential Life Insurance

4.1
Compare

Axis Max Life Insurance

4.1
Compare

Bajaj Allianz Life Insurance

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