Upload Button Icon Add office photos

Filter interviews by

Upstox Software Developer Intern Interview Questions and Answers

Updated 24 Dec 2024

Upstox Software Developer Intern Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How hash map works
  • Q2. Stack question
Round 2 - HR 

(2 Questions)

  • Q1. Expect salary from company
  • Q2. What ur project in college

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list

    • Create a new linked list to store the merged result

    • Iterate through both input linked lists and compare nodes to determine the order in which they should be added to the result list

    • Handle cases where one list is longer than the other

  • Answered by AI
  • Q2. Check if paranthesis are balanced or not
  • Ans. 

    To check if parentheses are balanced, use a stack data structure to keep track of opening and closing parentheses.

    • Use a stack to push opening parentheses and pop when encountering a closing parenthesis

    • If stack is empty when encountering a closing parenthesis, return false

    • After iterating through all parentheses, if stack is empty, return true

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Right view of a Binary Search tree
  • Ans. 

    The right view of a Binary Search Tree shows the nodes that are visible when viewing the tree from the right side.

    • The right view of a Binary Search Tree includes the rightmost node at each level.

    • Nodes at each level that are not visible from the right side are not included in the right view.

    • Example: For the Binary Search Tree with values 1, 2, 3, 4, 5, the right view would be 1, 3, 5.

  • Answered by AI
  • Q2. Few javascript questions on how to parse a json object without using inbuilt libraries.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa easy-medium and your projecs in depth.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

There were DSA questions and time limit was 1 hr

Round 2 - Technical 

(2 Questions)

  • Q1. Calculate factorial using tabulation
  • Ans. 

    Factorial calculation using tabulation in dynamic programming

    • Create an array to store factorial values up to n

    • Initialize the array with base cases (0! = 1, 1! = 1)

    • Iterate from 2 to n and calculate factorial using previous values in the array

    • Return the factorial value at index n

  • Answered by AI
  • Q2. Wildcard matching question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Creating a Web App using React JS and Java Servlets

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

4 coding problems + 1 sql problem

Round 2 - Technical 

(2 Questions)

  • Q1. Gas Station Problem On leetcode
  • Q2. Simple Tree Traversal Problem LC medium
  • Ans. 

    Given a binary tree, return the inorder traversal of its nodes' values.

    • Inorder traversal: left subtree, root, right subtree

    • Use recursion to traverse the tree

    • Implement a stack-based iterative solution for better space complexity

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics and have deep understanding of your project and also focus on cs fundamentals.

Skills evaluated in this interview

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

I applied via campus placement at Indian Institute of Technology (IIT), Mandi and was interviewed in Jul 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. There were basic DSA questions
  • Q2. Few questions based on Resume and Projects
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

There was a very basic aptitude test ,but time was very low.

Round 2 - Coding Test 

For round 2 there were given 2 questions which were very easy, any beginner programmer can do it.

Round 3 - One-on-one 

(4 Questions)

  • Q1. During the interview I was asked about my hobbies my projects and a bit about dsa
  • Q2. About Hobbies like photography and studds
  • Q3. ABout basic dsa like stack queue
  • Q4. About my projects

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

The online round had 2 coding questions and one question of a regular expression.

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered Anonymously
  • Q2. 

    Increasing Subsegment Problem Statement

    Given a sequence ARR consisting of N integers, your task is to identify the longest subsegment of ARR, where you can change at most one number to make the subsegmen...

  • Ans. Dynamic Programming

    Here, the idea is to calculate the longest increasing subarray for every element by taking it as the starting as well as the ending point.

     

    Here is the algorithm:

     

    1. We first compute the longest increasing subarray ending at an index for every index in the given array. We store these values in l[].
    2. Then calculate the longest increasing subarray starting at an index for every index in the given a...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

First 10 minutes started with the Introduction. Then he asked about my projects. He seemed interested in my projects and asked a lot of questions about them. He asked questions related to Node Js, React Js, Mongo DB, AWS as all these were mentioned in my Resume. Around 25 minutes was completed explaining each and everything.

Then he started with the coding questions. I was allowed to share my screen and use any of my favourite text editors. I chose ‘VS Code’.

I was able to solve 2 coding questions very easily. I got stuck in the puzzle as I didn’t solve any puzzles before. I was able to come up with different approaches, but they weren’t the most optimal. He tried giving me a lot of hints but still wasn’t able to solve it. I had a positive can-do attitude throughout, and I was really close to solving it.

Feedback: He told me I performed well and asked if I had any questions for him. I asked for the solution to the puzzle. He explained to me the solution and I told him that I will practice puzzles.

Around 5-6 students got selected for 2nd Interview.

  • Q1. 

    Move Zeros To Left

    You are provided an array ARR of integers. Your task is to rearrange this array such that all elements with zero values are moved to the left, and all non-zero elements follow them, pre...

  • Ans. Solution Using Extra space

    The idea is to use an extra vector to store all the non-zero elements while maintaining their relative order. So we will first add all the non-zero elements to a vector and then iterate that vector backwards and start updating the array values from end. In the end we will set all the array values whose values were not updated to 0. 

    Steps:

    1. Let storeNonZero be the vector that stores non-zero...
  • Answered Anonymously
  • Q2. 

    Maximum Sum of Disjoint Pairs with Specific Difference

    Given an array of integers and a number K, your task is to form pairs of elements from the array such that the absolute difference between them is st...

  • Ans. Sorting

    Approach: We sort the given array in increasing order. For every element, we try to pair it with its previous element first. Since the array is sorted, the value of ‘ARR[i]’ would be more than ‘ARR[i - 1]’. We need to pair with a difference less than ‘K’, which means if 'ARR[i - 2]' can be paired, then ‘ARR[i - 1]’ can also be paired in a sorted array. Here, we prefer the previous element so that if ‘ARR[i]’ - ‘...

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 35 minutes
Round difficulty - Medium

It started with a brief Introduction and in-depth discussions on projects. He also asked me a lot of questions about my previous internship. He asked me some behavioural questions as well.

I was able to solve the question, and he did not ask me any other questions. This round was really short for me and was finished in around 35 minutes, well before time. I asked about my feedback, and he told me that the ‘HR’ will get back to me. I thought he was not satisfied with my answers and I will be rejected though I gave very good answers to every question.

3 students got selected for the next round. I think he was satisfied and did not want to waste more time asking questions.

  • Q1. 

    Polynomial Simplification Problem Statement

    You are provided with two arrays representing the coefficients and degrees of a polynomial expression. Your task is to simplify this polynomial into its general...

  • Ans. Using a map to store coefficients
    1. Initialise a map which will store the coefficients as value and exponent as key.
    2. For every term in the polynomial, update the coefficients in the map.
    3. If the coefficient becomes zero then remove the entry from the map.
    4. Sort the key values in descending order.
    5. Initialize the answer array.
    6. Add all non-zero coefficients in the array and return it.
    Space Complexity: OtherExplanation:

    O(K), where ...

  • Answered Anonymously
Round 4 - HR 

Round duration - 60 minutes
Round difficulty - Medium

It started with an introduction and discussion on projects. He seemed very curious about my project and went ahead to cross-question every functionality. We discussed everything and how the code works. He asked me a lot of questions on ‘Socket’ as my project mentioned it.

HR-related questions such as:
Why do you want to join the company?
Where do you see yourself in the next 5 years?
What are your strengths and weakness?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lovely Professional University. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPAAcko interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Puzzles, Project, Mock InterviewsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must know the standard algorithms (eg: searching, sorting)
Tip 2 : Practise mock interviews with your friends

Application resume tips for other job seekers

Tip 1 : Project with the deployed link and Github link
Tip 2 : Don't put information which is not relevant to the job profile

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic apti test including topics from dbms cn oop os and 2 coding q

Round 2 - Coding Test 

Leetcode hard hashmap problem was given in this round

Round 3 - Group Discussion 

1 on 1 with director with discussions on dbms etc

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

I applied via campus placement at Institute of Technical Education and Research, Bhuvaneshwar and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Assignment 

They first taught React ,javaEE and sql and than told us to make a full stack B2b invoice management system

Upstox Interview FAQs

How many rounds are there in Upstox Software Developer Intern interview?
Upstox interview process usually has 2 rounds. The most common rounds in the Upstox interview process are One-on-one Round and HR.
What are the top questions asked in Upstox Software Developer Intern interview?

Some of the top questions asked at the Upstox Software Developer Intern interview -

  1. What ur project in coll...read more
  2. How hash map wo...read more
  3. Expect salary from comp...read more

Tell us how to improve this page.

Upstox Software Developer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Upstox Software Developer Intern Salary
based on 4 salaries
₹3 L/yr - ₹6 L/yr
43% less than the average Software Developer Intern Salary in India
View more details

Upstox Software Developer Intern Reviews and Ratings

based on 2 reviews

3.9/5

Rating in categories

4.6

Skill development

3.5

Work-life balance

3.9

Salary

3.5

Job security

3.5

Company culture

3.9

Promotions

4.3

Work satisfaction

Explore 2 Reviews and Ratings
Customer Service Executive
43 salaries
unlock blur

₹1.1 L/yr - ₹3.3 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹14.3 L/yr - ₹55 L/yr

Software Development Engineer II
21 salaries
unlock blur

₹21 L/yr - ₹45 L/yr

Associate Manager
20 salaries
unlock blur

₹9.5 L/yr - ₹13.5 L/yr

Sales Executive
20 salaries
unlock blur

₹1.5 L/yr - ₹4 L/yr

Explore more salaries
Compare Upstox with

Zerodha

4.2
Compare

HDFC Securities

3.6
Compare

Kotak Securities

3.6
Compare

IIFL Finance

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