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

Product Engineer

Sprinklr
upvote
share-icon
3 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Journey
In the lockdown period, I developed an interest in coding and started coding regularly on Leetcode and codechef, this helped me a lot when I applied for various jobs in my placement year.
Application story
It was an on-campus opportunity, and eligible students were asked to register themselves on the Hirepro portal. All the assessments were conducted on Hirepro as well.
Why selected/rejected for the role?
I was selected because I passed all test cases in the coding round. I was also fluent in communication skills that added to my numbers.
Preparation
Duration: 6 months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : Do at least 2 good projects and make an attractive resume mentioning all your skills in the best possible way(Don't include any False commitments)
Tip 2 : Practice easy to medium level coding questions from geeks for geeks or Leetcode.
Tip 3 : Prepare everything mentioned in your resume properly including Java, SQL.

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

Tip 1 : Mention your projects and explain them briefly 
Tip 2 : Do not mention anything you are not having the knowledge of.

Interview rounds

01
Round
Medium
Online Coding Test
Duration60 minutes
Interview date15 Jun 2022
Coding problem2

1. Reverse Words In A String

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

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. Braille's Dilemma

Hard
24m average time
65% success
0/120
Asked in companies
SprinklrVFISLK Global ServicesCodezero2pi

Abhishek, a blind man has N distinct binary strings all of the equal lengths. A binary string only contains '0's and '1's. The strings are numbered from 1 to N and all are distinct strings. Abhishek can only differentiate between these strings by touching them. In one touch Abhishek can identify one character at a position of any particular string from the set. Your task is to find the minimum number of touches Abhishek has to make so that he finds that all strings are different.

Try solving now
02
Round
Medium
Telephonic
Duration80 minutes
Interview date23 Jun 2022
Coding problem3

1. Clone Graph

Moderate
25m average time
75% success
0/80
Asked in companies
UberAppleFacebook

You are given a reference/address of a node in a connected undirected graph containing N nodes and M edges. You are supposed to return a clone of the given graph which is nothing but a deep copy. Each node in the graph contains an integer “data” and an array/list of its neighbours.

The structure of the graphNode class is as follows:

class graphNode 
{  
    public:
        int data;
        vector<graphNode*> neighbours;
}
Note :
1. Nodes are numbered from 1 to N.

2. Your solution will run on multiple test cases. If you are using global variables make sure to clear them.
Try solving now

2. Keys and Rooms

Moderate
30m average time
70% success
0/80
Asked in companies
AdobeDisney + HotstarMicrosoft

You are given some information about the rooms of a military camp. The rooms are numbered from 0 to 'N-1'. Each room contains keys to some other rooms. You can visit a room only if you have a key to that room. Your task is to determine whether each room can be visited or not.

Note:

1. Room 0 is the only room that is initially unlocked and doesn’t require any key to enter.

2. Any other room can be visited only if you have the key to that room.

3. More than one room can have keys to the same room.

4. You are allowed to visit rooms in any order.

5. You can visit any room multiple times.
Try solving now

3. Edit Distance

Moderate
30m average time
70% success
0/80
Asked in companies
OYOGoldman SachsHCL Technologies

You are given two strings 'S' and 'T' of lengths 'N' and 'M' respectively. Find the "Edit Distance" between the strings.

Edit Distance of two strings is the minimum number of steps required to make one string equal to the other. In order to do so, you can perform the following three operations:

1. Delete a character
2. Replace a character with another one
3. Insert a character
Note:
Strings don't contain spaces in between.
Try solving now
03
Round
Easy
HR Round
Duration40 minutes
Interview date8 Jul 2022
Coding problem1

1. Basic HR Questions

Tell me something about yourself
Comment on your family background.
What are your strengths and weaknesses?
What was your project?
What was your role in your project?

Here's your problem of the day

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

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
Product Engineer
3 rounds | 10 problems
Interviewed by Sprinklr
1855 views
0 comments
0 upvotes
company logo
Product Engineer
5 rounds | 10 problems
Interviewed by Sprinklr
1279 views
0 comments
0 upvotes
company logo
Product Engineer
2 rounds | 4 problems
Interviewed by Sprinklr
1337 views
0 comments
0 upvotes
company logo
Product Engineer
3 rounds | 5 problems
Interviewed by Sprinklr
638 views
0 comments
0 upvotes