Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Upstox Team. If you also belong to the team, you can get access from here

Upstox Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Upstox Sde1 Interview Questions and Answers

Updated 1 Nov 2024

Upstox Sde1 Interview Experiences

2 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 1 Nov 2024

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

2 questions medium level of leetcode

Round 2 - Technical 

(2 Questions)

  • Q1. Stack question - asteroid collision
  • Q2. Base on map , simple

Sde1 Interview Questions & Answers

user image abhineet raj

posted on 14 May 2024

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

Hands of Straight question of two pointers.
Tasks scheduler

Round 2 - Technical 

(4 Questions)

  • Q1. Basics of Computer Scrience-> DBMS, OOPS, OS Projects
  • Q2. BCNF, Normalization
  • Q3. Multithreading and critical sections and all
  • Q4. Semaphores, Threads and process
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent proces ... read more
Q4. Given one point and circle how will you find if it's inside circl ... read more
asked in Amazon
Q5. N queen problem with problem statement and dry running of code wi ... read more

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Strength and weakness
Round 2 - Technical 

(1 Question)

  • Q1. Private equity waterfall

Interview Preparation Tips

Topics to prepare for ICICI Direct Senior Associate interview:
  • Investment Banking
  • Hedge Funds
  • Private Equity
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Design dream11. Bonus - how notification will be sent to customer for milestone of a player they have followed at scale.

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

Two DSA Questions
1. Check whether two strings are anagram or not?
2. Create power function without using Math.pow() library?

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

(2 Questions)

  • Q1. LLD to design whatsapp
  • Ans. 

    Designing WhatsApp involves creating a high-level design for the messaging app, focusing on features like chat, groups, calls, and media sharing.

    • Implement chat functionality with real-time messaging using sockets

    • Design group chat feature with ability to add/remove members

    • Include end-to-end encryption for secure messaging

    • Develop voice and video calling functionality

    • Allow media sharing such as photos, videos, and documen

  • Answered by AI
  • Q2. System design ticket booking system
  • Ans. 

    Design a ticket booking system for efficient and user-friendly experience.

    • Use a database to store information about available tickets, users, and bookings

    • Implement a user-friendly interface for users to search for and book tickets

    • Include features like seat selection, payment processing, and booking confirmation

    • Consider scalability and performance to handle a large number of users and bookings

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

I was asked two DSA questions and duration was of one hour.
1. Calculate Sum of edges of LinkedList
2. Given a list of numbers, find out all the pythagorean triplets.

Round 2 - Coding Test 

This was also a DSA round for 1 hour and expected to solve two problems (Medium)

Round 3 - Case Study 

This was a system design round for one hour

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

(1 Question)

  • Q1. Explain the last technically challenging topic that you have worked on. The engineering manager is only interested in self boasting. Without even trying to understand the entire problem statement, they try...

Interview Preparation Tips

Interview preparation tips for other job seekers - To pass engineering manager round, you will always have to agree to the hiring manager. Even if technically it doesn't make sense, just nod. The entire interview is to boost his ego. The comments that they pass without even understanding the entire picture is generally astonishing.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Arraylist find duplicate
  • Ans. 

    Find duplicates in an ArrayList of strings.

    • Iterate through the ArrayList and use a HashSet to keep track of seen elements.

    • If an element is already in the HashSet, it is a duplicate.

    • Store the duplicates in a separate ArrayList or print them directly.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What is difference between @primary and @Qualifier?
  • Ans. 

    Primary is used to define a primary bean when multiple beans of the same type are present, while Qualifier is used to specify which bean to autowire when multiple beans of the same type are present.

    • Primary annotation is used to give a higher preference to a bean when multiple beans of the same type are present in the Spring application context.

    • Qualifier annotation is used to specify which bean to autowire when multiple...

  • Answered by AI
  • Q2. How we can handle fault tolerance in Microservices?
  • Ans. 

    Fault tolerance in Microservices can be achieved through redundancy, graceful degradation, and circuit breakers.

    • Implementing redundancy by having multiple instances of each microservice running to handle failures.

    • Using graceful degradation to ensure that the system can still function even if certain microservices are unavailable.

    • Utilizing circuit breakers to prevent cascading failures by temporarily stopping requests t

  • Answered by AI
  • Q3. How to implement spring security?
  • Ans. 

    Implementing Spring Security involves configuring security settings in the Spring application.

    • Add Spring Security dependency in pom.xml

    • Configure security settings in SecurityConfig class

    • Define user roles and permissions

    • Use annotations like @EnableWebSecurity and @Secured

  • Answered by AI
  • Q4. Explain OAuth 2 implementation?
  • Ans. 

    OAuth 2 is an authorization framework that allows a third-party application to obtain limited access to an HTTP service.

    • OAuth 2 is used for delegated access, allowing a user to grant a third-party application access to their resources without sharing their credentials.

    • It involves the use of access tokens, which are issued by the authorization server after the user authenticates and authorizes the application.

    • OAuth 2 su...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Memory management in Java ?
  • Ans. 

    Java uses automatic memory management through garbage collection to allocate and deallocate memory.

    • Java uses garbage collection to automatically manage memory by deallocating objects that are no longer needed.

    • The JVM has a heap where objects are allocated and garbage collection is performed to reclaim memory.

    • Java provides the 'finalize()' method for objects to perform cleanup before they are garbage collected.

    • Memory le...

  • Answered by AI
  • Q2. Different types of gc?
  • Ans. 

    Different types of garbage collection algorithms in software development.

    • Mark and Sweep: Identifies and removes unreachable objects.

    • Generational: Divides objects into different generations based on age.

    • Parallel: Uses multiple threads to perform garbage collection concurrently.

    • Incremental: Spreads garbage collection work over multiple cycles to reduce pause times.

  • Answered by AI
  • Q3. Difference between executors &executorservice?
  • Ans. 

    Executors are a class that provides factory and utility methods for Executor, ExecutorService is an interface that represents an asynchronous execution service.

    • Executors class provides factory and utility methods for Executor interface

    • ExecutorService is an interface that represents an asynchronous execution service

    • ExecutorService extends Executor interface

    • ExecutorService provides methods to manage termination and produ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - More focus on core topics

Skills evaluated in this interview

Upstox Interview FAQs

How many rounds are there in Upstox Sde1 interview?
Upstox interview process usually has 2-3 rounds. The most common rounds in the Upstox interview process are Technical, Coding Test and HR.
How to prepare for Upstox Sde1 interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Upstox. The most common topics and skills that interviewers at Upstox expect are Computer Accounting, Enrollment, Highways, LAN Networking and REST API.
What are the top questions asked in Upstox Sde1 interview?

Some of the top questions asked at the Upstox Sde1 interview -

  1. Basics of Computer Scrience-> DBMS, OOPS, OS Proje...read more
  2. Multithreading and critical sections and ...read more
  3. semaphores, Threads and proc...read more

Tell us how to improve this page.

Upstox Sde1 Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Morningstar Interview Questions
3.9
 • 241 Interviews
Angel One Interview Questions
4.0
 • 135 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
TresVista Interview Questions
2.9
 • 115 Interviews
Pine Labs Interview Questions
3.4
 • 110 Interviews
HDFC Securities Interview Questions
3.6
 • 104 Interviews
Mr Cooper Interview Questions
4.0
 • 84 Interviews
View all
Upstox Sde1 Salary
based on 7 salaries
₹14.2 L/yr - ₹19.5 L/yr
23% less than the average Sde1 Salary in India
View more details

Upstox Sde1 Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

2.0

Work-life balance

2.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Customer Service Executive
43 salaries
unlock blur

₹1.1 L/yr - ₹3.3 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹16 L/yr - ₹55 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

Product Manager
19 salaries
unlock blur

₹18 L/yr - ₹50 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