RedBus interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

RedBus
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Journey
I started my coding journey on YouTube, where I first learned the data structure and Algorithm. Then, I started my preparation of Data Structure on the LinkedIn.
Application story
Company visited to your campus for the placement.
Why selected/rejected for the role?
I think i was rejected because i was not able to answer all the question correctly under the given time of the interviewer.
Preparation
Duration: 6 months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : Practice at least 250 Questions.
Tip 2 : Do at least 2 projects.

Application process
Where: Campus
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Interview rounds

01
Round
Easy
Face to Face
Duration60 minutes
Interview date19 Nov 2022
Coding problem2

1. Palindrome Partitions

Easy
0/40
Asked in companies
AmazonRedBusGoogle inc

You are given a string S, partition S such that every substring of the partition is a palindrome. You need to return all possible palindrome partitioning of S.

Note: A substring is a contiguous segment of a string.

For Example :
For a given string “BaaB.”
3 possible palindrome partitioning of the given string are:
{“B”, “a”, “a”, “B”}
{“B”, “aa”, “B”}
{“BaaB”}
Every substring of all the above partitions of “BaaB” is a palindrome.
Try solving now

2. Rotate matrix by 90 degrees

Easy
15m average time
85% success
0/40
Asked in companies
MicrosoftMcKinsey & CompanyIntuit

You are given a square matrix of non-negative integers 'MATRIX'. Your task is to rotate that array by 90 degrees in an anti-clockwise direction using constant extra space.

For example:

For given 2D array :

    [    [ 1,  2,  3 ],
         [ 4,  5,  6 ],
         [ 7,  8,  9 ]  ]

After 90 degree rotation in anti clockwise direction, it will become:

    [   [ 3,  6,  9 ],
        [ 2,  5,  8 ],
        [ 1,  4,  7 ]   ]
Try solving now
02
Round
Easy
Face to Face
Duration60 minutes
Interview date19 Nov 2022
Coding problem2

1. Reverse Words In A String

Easy
10m average time
90% success
0/40
Asked in companies
SalesforceAckoAmazon

You are given a string 'str' of length 'N'.


Your task is to reverse the original string word by word.


There can be multiple spaces between two words and there can be leading or trailing spaces but in the output reversed string you need to put a single space between two words, and your reversed string should not contain leading or trailing spaces.


Example :
If the given input string is "Welcome to Coding Ninjas", then you should return "Ninjas Coding to Welcome" as the reversed string has only a single space between two words and there is no leading or trailing space.
Try solving now

2. System Design

Design type ahead suggestion.

03
Round
Easy
HR Round
Duration30 minutes
Interview date19 Nov 2022
Coding problem1

1. Basic HR Questions

1. Why do you want to join Red Bus?

2. Mention your strength and weakness.

3. Where do you see yourself in the next 5 years?

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is the purpose of the return keyword?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 4 problems
Interviewed by RedBus
1542 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 6 problems
Interviewed by RedBus
1510 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 10 problems
Interviewed by RedBus
860 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 6 problems
Interviewed by RedBus
662 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
114869 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
58031 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
35057 views
7 comments
0 upvotes