Upload Button Icon Add office photos

Filter interviews by

Juspay Technologies Software Development Engineer Intern Interview Questions and Answers

Updated 17 Jan 2025

Juspay Technologies Software Development Engineer Intern Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

.n array tree and graph problems

Round 2 - Assignment 

Hackathon round divided into two

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Campus Placement

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

They asked very basic questions ,be thorough with dsa

Round 3 - Technical 

(1 Question)

  • Q1. Segment tree was asked ,level difficult

Software Development Engineer Intern Interview Questions Asked at Other Companies

asked in Amazon
Q1. Say you're dealing with really long integers. They're too long to ... read more
asked in Amazon
Q2. Given a linked list (singly-linked, non-circular), swap the kth n ... read more
asked in Amazon
Q3. long numbers, add the two numbers and store the result in a third ... read more
Q4. what is the angle between minute and hour hand at 1:15
asked in Amazon
Q5. Given a Binary Search Tree, print the kth last node in inorder tr ... read more

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

(1 Question)

  • Q1. Diff between react and jQuery
  • Ans. 

    React is a modern JavaScript library for building user interfaces, while jQuery is a fast and concise JavaScript library for DOM manipulation.

    • React is component-based, promoting reusability and modularity.

    • React uses a virtual DOM for efficient updates, while jQuery directly manipulates the DOM.

    • React is declarative, making it easier to reason about the UI, while jQuery is imperative.

    • React is typically used for single-pa...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

3 dsa questions medium level

Round 2 - Technical 

(2 Questions)

  • Q1. 2 medium level dp questions based on string and stocks
  • Q2. One hard question based on graph
Round 3 - HR 

(1 Question)

  • Q1. Hr questions and java , springboot questions etc
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Technical Aptitude on singalton pattern

Round 2 - Technical 

(3 Questions)

  • Q1. What is man in middle attack?
  • Ans. 

    A man-in-the-middle attack is a cyber security attack where the attacker secretly intercepts and possibly alters the communication between two parties.

    • Attacker intercepts communication between two parties

    • Attacker may alter the communication

    • Commonly occurs in public Wi-Fi networks

    • Can lead to data theft or unauthorized access

  • Answered by AI
  • Q2. How to protect api?
  • Ans. 

    Protecting API involves using authentication, authorization, encryption, rate limiting, and monitoring.

    • Implement authentication mechanisms such as OAuth, JWT, or API keys

    • Use authorization to control access to different parts of the API

    • Encrypt sensitive data using SSL/TLS

    • Implement rate limiting to prevent abuse and protect against DDoS attacks

    • Monitor API traffic for unusual activity and potential security threats

  • Answered by AI
  • Q3. Whats is csrf ?
  • Ans. 

    CSRF stands for Cross-Site Request Forgery, a type of attack where a malicious website tricks a user into performing actions on another website without their knowledge.

    • CSRF attacks exploit the trust that a site has in a user's browser, by sending unauthorized requests using the user's session.

    • Prevent CSRF attacks by using tokens in forms, checking the origin of requests, and implementing proper authentication and autho...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Why you want ti join airpay?
  • Q2. Why you leave current organisation?

Skills evaluated in this interview

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

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Test was based on arrays and some dsa concepts.

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Coding and aptitude round

Round 2 - Technical 

(1 Question)

  • Q1. Tree dsa questions
Round 3 - Puzzles Interview 

(1 Question)

  • Q1. Horse race question
Round 4 - HR 

(1 Question)

  • Q1. Location specific question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at International Institute of Information Technology (IIIT), Allahabad and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Coding Test 

3 medium leetcode questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions of SQL and DBMS 2 DSA questions
  • Q2. Valid parentheses in o(1) space
  • Ans. 

    Check if parentheses are valid in constant space

    • Use a counter to keep track of open parentheses

    • Increment counter for '(' and decrement for ')'

    • If counter goes negative or not zero at end, return false

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Projects and brain stroming
  • Q2. Projects were asked in depth
  • Q3. Interviewer had good technical knowledge

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Coding Assessment to Create Rest API.
  • Ans. 

    Create a Rest API for coding assessment

    • Choose a programming language and framework

    • Define endpoints and HTTP methods

    • Implement CRUD operations

    • Use authentication and authorization

    • Test API using tools like Postman

  • Answered by AI
  • Q2. About JWT Token
  • Q3. Pagination how will you do for 3 lakh record
  • Ans. 

    Pagination can be achieved by limiting the number of records displayed per page and using page numbers.

    • Limit the number of records displayed per page to improve performance

    • Use page numbers to navigate through the records

    • Implement caching to reduce database queries

    • Consider using lazy loading to improve performance

    • Use a server-side framework that supports pagination

    • Consider using a search feature to filter records

  • Answered by AI
  • Q4. Query Optimization
  • Q5. Mysql difference between having and where clause
  • Ans. 

    HAVING is used to filter results after grouping, WHERE is used to filter results before grouping.

    • HAVING is used with GROUP BY clause, WHERE is used with SELECT clause

    • HAVING filters groups based on aggregate functions, WHERE filters rows based on column values

    • HAVING is slower than WHERE as it operates on grouped data

    • Example: SELECT department, COUNT(*) FROM employees GROUP BY department HAVING COUNT(*) > 5;

    • Example: SELE

  • Answered by AI
  • Q6. Mysql index - query to write index
  • Q7. Polymorphisim interface
  • Q8. Clustered index and non clustered index

Interview Preparation Tips

Interview preparation tips for other job seekers - I have attended for PHP developer. There was 3 three rounds.
First Round Technical Discussion. Second Round is Technical Discussion and coding assessment.
Third Round will be business logical assessment.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic testing question
  • Q2. Functional testing
  • Q3. Performance testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview

Juspay Technologies Interview FAQs

How many rounds are there in Juspay Technologies Software Development Engineer Intern interview?
Juspay Technologies interview process usually has 2-3 rounds. The most common rounds in the Juspay Technologies interview process are Coding Test, Technical and Assignment.

Tell us how to improve this page.

Juspay Technologies Software Development Engineer Intern Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 778 Interviews
PhonePe Interview Questions
4.0
 • 307 Interviews
PayPal Interview Questions
3.9
 • 212 Interviews
Razorpay Interview Questions
3.6
 • 150 Interviews
Mobikwik Interview Questions
4.1
 • 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
Juspay Technologies Software Development Engineer Intern Salary
based on 4 salaries
₹16 L/yr - ₹27 L/yr
25% more than the average Software Development Engineer Intern Salary in India
View more details

Juspay Technologies Software Development Engineer Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

2.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Product Engineer
63 salaries
unlock blur

₹11 L/yr - ₹27 L/yr

Software Engineer
58 salaries
unlock blur

₹10 L/yr - ₹31.7 L/yr

Software Development Engineer
53 salaries
unlock blur

₹16 L/yr - ₹30 L/yr

Product Manager
49 salaries
unlock blur

₹22 L/yr - ₹50 L/yr

Software Developer
46 salaries
unlock blur

₹6.8 L/yr - ₹27 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