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

SDE - 1

JUSPAY
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Journey
I focused more on core subjects instead of DSA and only practiced basic DSA questions from online platforms. I practiced System Design, Networking, OOP, and DBMS through various YouTube channels. I was also interested in Cloud Computing, so I later took a course on it.
Application story
This company visited our campus for placements. First, we applied by filling out the forms. They shortlisted candidates based on GPA. Later, they called us for the interview rounds.
Why selected/rejected for the role?
I was up to the mark and answered all questions confidently. The interviewer was quite impressed with me and gave me good feedback later on.
Preparation
Duration: 2 months
Topics: Aptitude(Numerical, Quant, Verbal, Technical), OOPS, OS, DBMS, DSA(Basic Level)
Tip
Tip

Tip 1: Include good projects on your resume for discussion.
Tip 2: Use a single-page resume.
Tip 3: Ensure your basics are clear.

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

Tip 1: Keep your resume to a single page.
Tip 2: Don't use too many fonts; keep it simple.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date7 Oct 2021
Coding problem2

This was the first round of elimination. The round consists of 7 sections.

1. Min Efforts Required

Moderate
40m average time
60% success
0/80
Asked in companies
MicrosoftDunzoFlipkart limited

The Ultimate Ninja Ankush, after training hard, goes for a good meal at the ninja cafe, for that he follows the path given on the map, which may or may not lead him to the ninja cafe. The map is a directed graph. Since he is also very lazy, he wants to minimize the effort to travel. The effort is defined as the product of all the distance it takes to reach from the dojo (source) to the ninja cafe (destination). Can you help him find the path with the minimum effort it would take The Ultimate Ninja Ankush to reach the destination?

More Formally, you are given a directed graph with ‘N’ nodes and ‘M’ edges where the distance of each edge is greater than 0, also given a source ‘src’ and a destination ‘dest’. The task is to find the minimum product of edges from src’ to ‘dest’. If there is no path from ‘src’ to ‘dest’, then return -1.

For example

Given:
‘N’ = 3, ‘M’ = 3. 
‘edges’ = 
    [[0 1 1],
     [1 2 1],
     [0 2 3]]
‘src’ = 0, ‘dest’ = 2.

There are two possible paths, that is to go from node-0 to node-2 directly, which will take 2 units of effort, or go from node-0 to node-1 and then node-1 to node-2, which will take 1 unit of effort.
Problem approach

Applied djisktra algortihm to solve this problem

Try solving now

2. Rat In A Maze

Easy
15m average time
85% success
0/40
Asked in companies
Samsung R&D InstituteDeutsche BankMakeMyTrip

You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a square matrix of order 'N' * 'N' where the cells with value 0 represent the maze’s blocked locations while value 1 is the open/available path that the rat can take to reach its destination. The rat's destination is at ('N' - 1, 'N' - 1). Your task is to find all the possible paths that the rat can take to reach from source to destination in the maze. The possible directions that it can take to move in the maze are 'U'(up) i.e. (x, y - 1) , 'D'(down) i.e. (x, y + 1) , 'L' (left) i.e. (x - 1, y), 'R' (right) i.e. (x + 1, y).

Note:
Here, sorted paths mean that the expected output should be in alphabetical order.
For Example:
Given a square matrix of size 4*4 (i.e. here 'N' = 4):
1 0 0 0
1 1 0 0
1 1 0 0
0 1 1 1 
Expected Output:
DDRDRR DRDDRR 
i.e. Path-1: DDRDRR and Path-2: DRDDRR

The rat can reach the destination at (3, 3) from (0, 0) by two paths, i.e. DRDDRR and DDRDRR when printed in sorted order, we get DDRDRR DRDDRR.
Problem approach

Dynamic programming approach.

Try solving now
02
Round
Medium
Face to Face
Duration70 minutes
Interview date8 Oct 2021
Coding problem2

The panelist was a Senior Platform Engineer at JUSPAY. The interview began with greetings, after which the panelist asked me to share my resume and introduce myself. The panelist provided a few suggestions on my resume, to which I responded calmly. Below are the topics discussed during the interview.

1. Project Based Questions

  • Explain your projects (explained the use case, tech stack, and my contributions to the project).
  • What have you done in college apart from academics? (Answer: TPC and SCOPE courses)
  • Why haven’t you mentioned your final year project on your resume?
  • He then asked me to explain inheritance and whether it is possible to implement it in Python. (Learn)
  • What are the differences between HTML and HTML5? (Learn)
  • What is TypeScript? (Learn)
  • What are the various data types in JavaScript? (Learn)

2. Technical Questions

  1. Do you know about cloud computing? (Learn)
  2. What cloud platforms are you familiar with?
  3. Which is the best among AWS, GCP, and Azure? (Learn)
  4. What features of GCP have you used, and where?
  5. Name any five commands commonly used in Linux. (Learn)
  6. Are you familiar with networking commands in Linux? (Learn)
03
Round
Easy
HR Round
Duration30 minutes
Interview date8 Oct 2021
Coding problem1

1. Basic HR Questions

Introduce yourself

What are your strengths and weaknesses?

Why should we hire you?

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
SDE - 1
2 rounds | 1 problems
Interviewed by JUSPAY
2438 views
0 comments
0 upvotes
company logo
SDE - 1
1 rounds | 2 problems
Interviewed by JUSPAY
2946 views
0 comments
0 upvotes
company logo
SDE - 1
1 rounds | 1 problems
Interviewed by JUSPAY
4958 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 3 problems
Interviewed by JUSPAY
3871 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
115097 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
58238 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
35147 views
7 comments
0 upvotes