Sprinklr

Details

Job Status

Full Time (Employment + Internship Mandatory)

Criteria

StudyCutoff
X%
XII%
UG6 GPA

Round 1

02/09/23

  1. MCQ (72) - Technical, Aptitude
  2. Coding (2)

Coding Questions

  1. Smallest Common Substring: Given two strings, find the number of mappings of the common substrings between the two stirngs.

Don’t have to consider subtrings, since they’re asking for smallest, it just becomes the individual characters. Create a charCount for both and multiply and add the count for each character.


  1. Substrings ending with same characters: Given a string, and p ranges (S[1..2] or S[1..6]). Find the number of substring in the ranges such that the end characters are the same.