Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Juspay Technologies Sdet Engineer Interview Questions and Answers

Updated 7 Dec 2024

Juspay Technologies Sdet Engineer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

This round has 3 coding questions mostly based on graph and trees

Round 2 - Hackathon 

(2 Questions)

  • Q1. A lockable tree problem
  • Ans. 

    Design a data structure for locking/unlocking nodes in a binary tree efficiently.

    • Implement a lockable tree data structure with lock(), unlock(), and isLocked() methods.

    • Ensure a node can only be locked if all ancestors are unlocked and all descendants are locked.

    • Optimize the operations for efficiency.

    • Consider using a flag in each node to track its locked status.

    • Use a recursive approach to check locking conditions.

    • Mainta...

  • Answered by AI
  • Q2. OS level improvements in above problem
  • Ans. 

    Improving the operating system can enhance performance and efficiency of the system.

    • Optimizing memory management to reduce overhead

    • Implementing better scheduling algorithms to improve multitasking

    • Enhancing file system performance for faster data access

    • Improving network stack for better communication speed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in DSA and prepare the basic computer concepts well.

Skills evaluated in this interview

Sdet Engineer Interview Questions & Answers

user image Nistha Agrawal

posted on 3 Jul 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Basics about previous work

Sdet Engineer Interview Questions Asked at Other Companies

asked in Nykaa
Q1. Tell me about the projects and knowledge on selenium api and etc?
asked in Witty Com
Q2. In this example, the internal data structure (std::vector) can be ... read more
asked in Info Edge
Q3. What do you mean by run time polymorphism and how is it achieved?
Q4. What reusable methods have been designed by you and their impact
asked in Info Edge
Q5. Explain each oops concept with clarity and write a class where yo ... read more

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Oct 2023

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

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 Resume tips
Round 2 - Coding Test 

152. Maximum Product Subarray
Medium
17.6K
552
Companies
Given an integer array nums, find a
subarray
that has the largest product, and return the product.

The test cases are generated so that the answer will fit in a 32-bit integer.



Example 1:

Input: nums = [2,3,-2,4]
Output: 6
Explanation: [2,3] has the largest product 6.
Example 2:

Input: nums = [-2,0,-1]
Output: 0
Explanation: The result cannot be 2, because [-2,-1] is not a subarray.


Constraints:

1 <= nums.length <= 2 * 104
-10 <= nums[i] <= 10
The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.

Round 3 - Aptitude Test 

Basic quants and advanced quants

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before May 2023.

Round 1 - Coding Test 

Merge 2 unsorted array

Round 2 - Assignment 

Selenium automation framework
Redt assured automation framework

Interview Preparation Tips

Topics to prepare for Mobikwik Sdet Engineer interview:
  • Java
  • Restassured
  • MySQL
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Array question from leetcode
  • Q2. Stack question from leetcode
Round 2 - Coding Test 

Two problems each of array and stack

I applied via Company Website and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Coding Test 

There were total 4 questions
2 questions were easy from string and array
1 question was medium from array
1 question was hard from dynamic programming

Round 2 - Technical 

(1 Question)

  • Q1. In this round we have 3 questions which need to solve in 1 hrs 1 question easy from string 1 question was medium from array 1 question was hard from dp
Round 3 - Behavioral 

(1 Question)

  • Q1. In this round communication has checked and they asked basic problem solving questions and also discuss about your life journey It takes 1 hrs continuous discussion

Interview Preparation Tips

Topics to prepare for PhonePe Sdet Engineer interview:
  • Array
  • String
  • Dynamic programming
  • Problem Solving
Interview preparation tips for other job seekers - I would like to share that we should practice more and more data structures, problem solving .you can prefer leetcode, codeforces and geeksforgeeks.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 3 interview rounds.

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 Resume tips
Round 2 - Coding Test 

It was a online coding interview, asked me to write DS code

Round 3 - Technical 

(1 Question)

  • Q1. DSA questions, Did not clear

Interview Preparation Tips

Interview preparation tips for other job seekers - For SDET role they'll accept you to be very good at high level coding
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

You should be familiar with core java features. Collections, converting one collection Array / Vector to other. Removing duplicates. Lambda chaining / Functional programming. Basic SQL - Joins, Aggregates etc.

Round 2 - One-on-one 

(1 Question)

  • Q1. Explain Architecture of applications you worked on. Justify use of components. System Design questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - No need to grind leet code here. But you should know how to solve day to day problems. Do projects end to end. You should know the backend well.

Software Engineer Interview Questions & Answers

OneCard user image Kishan KAVATHIYA (Kishu)

posted on 15 May 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Internal Implementation of HashMap
  • Ans. 

    HashMap is implemented using an array of linked lists to handle collisions.

    • HashMap stores key-value pairs in an array of linked lists

    • Hash function is used to determine the index of the array where the key-value pair will be stored

    • Collision handling is done by chaining, where multiple key-value pairs with the same hash value are stored in the same linked list

    • HashMap allows null keys and values

    • HashMap is not synchronized...

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: Initially test was conducted. But they also considered resume for shortlisting to interview. Even if you do test badly, resume will come to your rescue if it is good enough.
Tips: Test consists of both aptitude and coding. Basic coding skills in C will be sufficient to solve the coding questions.

General Tips: Interviewing people are very friendly during the interview. Concentrate on concepts like linked lists, basic problems on strongs.
Skill Tips: Any basic C programming book.
Skills: Basic Coding, Basic C/C++
Duration: 2.5
College Name: IIT Madras
Motivation: Diverse fields in which company is working.
Contribute & help others!
anonymous
You can choose to be anonymous

Juspay Technologies Interview FAQs

How many rounds are there in Juspay Technologies Sdet Engineer interview?
Juspay Technologies interview process usually has 2 rounds. The most common rounds in the Juspay Technologies interview process are Coding Test, Resume Shortlist and Aptitude Test.
What are the top questions asked in Juspay Technologies Sdet Engineer interview?

Some of the top questions asked at the Juspay Technologies Sdet Engineer interview -

  1. A lockable tree prob...read more
  2. OS level improvements in above prob...read more

Recently Viewed

INTERVIEWS

Juspay Technologies

10 top interview questions

INTERVIEWS

Adani Enterprises

No Interviews

INTERVIEWS

Adani Enterprises

No Interviews

INTERVIEWS

Adani Enterprises

No Interviews

INTERVIEWS

Adani Enterprises

No Interviews

INTERVIEWS

Actalent Services

No Interviews

INTERVIEWS

Sify Technologies

No Interviews

INTERVIEWS

Sify Technologies

No Interviews

INTERVIEWS

Adani Enterprises

No Interviews

INTERVIEWS

Zoho

No Interviews

Tell us how to improve this page.

Juspay Technologies Sdet Engineer Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 747 Interviews
PhonePe Interview Questions
4.0
 • 297 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Mobikwik Interview Questions
4.0
 • 47 Interviews
Jodo Interview Questions
3.6
 • 21 Interviews
OneCard Interview Questions
3.5
 • 21 Interviews
Credgenics Interview Questions
3.5
 • 18 Interviews
BillDesk Interview Questions
3.2
 • 14 Interviews
Amazon Pay Interview Questions
4.0
 • 13 Interviews
View all
Product Engineer
63 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Juspay Technologies with

Razorpay

3.6
Compare

Payed

2.7
Compare

CCAvenue

2.5
Compare

BillDesk

3.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview