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

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)

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)

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
-
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)
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 questions from similar companies

I appeared for an interview before Aug 2020.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - I was hired in campus recruitment drive, my only advice to you is just be confident out there, eat food from recruiters plate if they offer just be who you are, speak loud and clear.

I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Insurance topics
  • Q2. What is insurance
  • Ans. 

    Insurance is a contract between an individual and an insurance company to protect against financial loss.

    • Insurance provides financial protection against unexpected events

    • Premiums are paid to the insurance company in exchange for coverage

    • Types of insurance include health, auto, home, and life insurance

    • Insurance policies have terms and conditions that must be followed to receive benefits

    • Insurance helps individuals and bu

  • Answered by AI
  • Q3. Underwriter
  • Q4. Nominee
  • Q5. Premium
  • Q6. Types of insurance
  • Ans. 

    Types of insurance include life, health, auto, home, and travel.

    • Life insurance provides financial support to beneficiaries upon the policyholder's death.

    • Health insurance covers medical expenses and treatments.

    • Auto insurance covers damages and injuries resulting from car accidents.

    • Home insurance covers damages to the home and personal property.

    • Travel insurance covers unexpected events while traveling, such as trip cance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about yourself. Think before you say something and try to prove that you are the best choice. Before you attend the interview please get to know about the domain and have good knowledge about the company

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

Interview Questionnaire 

5 Questions

  • Q1. Basic questions they asked. 1.tell me about yourself
  • Q2. 2.tell me about your past experience
  • Q3. 3.educational background
  • Ans. 

    I have a Bachelor's degree in Business Administration.

    • Bachelor's degree in Business Administration

    • Specialized in Marketing

    • Took courses in Sales and Negotiation

    • Attended seminars on Customer Relationship Management

  • Answered by AI
  • Q4. 4.can u work under pressure because it's a sale's
  • Q5. 5.are you ok with shift extended

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions they asked about you and your experience you should prepared.

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

₹20 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