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, Process, and Tips

Updated 26 Sep 2024

Top Sequoia Group Interview Questions and Answers

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 applied via Walk-in and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a highly motivated and dedicated individual with a strong background in finance and a passion for problem-solving.

    • I have a Bachelor's degree in Finance and have worked in the finance industry for 5 years.

    • I am skilled in financial analysis, budgeting, and forecasting.

    • I have successfully managed large-scale projects and implemented cost-saving strategies.

    • I am a team player and have excellent communication and interp...

  • Answered by AI
  • Q2. How much knowledge do you have in Insurance
  • Ans. 

    I have a strong knowledge in insurance.

    • I have a deep understanding of insurance policies and coverage.

    • I am familiar with different types of insurance such as life, health, auto, and property.

    • I have experience in analyzing insurance claims and determining coverage eligibility.

    • I am knowledgeable about insurance regulations and compliance.

    • I have worked with insurance companies and clients to provide accurate and timely in...

  • Answered by AI
  • Q3. They will ask you about your previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is a key element to crack this Interview, there will be total 4-5 rounds of interview here

1) Focus about technical skills and Analytical skills
2) Gain knowledge about insurance and about insurance industry
3) They will check your verbal ability

I applied via Referral and was interviewed before Feb 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 - HR 

(4 Questions)

  • Q1. Why are you looking for a change?
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Tell me about yourself.
Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your strength and weakness, what is your job in current company. Why you want to switch, some insurance domain questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and what is your expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - As per my case the hr gave me good salary hike.

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

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

Data Engineer
5 salaries
unlock blur

₹12 L/yr - ₹35 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹38 L/yr - ₹45 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

3.9
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