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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are hooks, event loop usecontext api
  • Q2. What is aggregator
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between normal and arrow functions
  • Ans. 

    Arrow functions are more concise and have a lexical 'this' binding compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have their own 'arguments' object.

    • Arrow functions cannot be used as constructors with 'new'.

    • Arrow functions are more concise and have implicit return when no curly braces are used.

  • Answered by AI
  • Q2. All basic JS Questions to cover Hoisting closure
  • Q3. They asked to show me an example using the API call
  • Q4. Difference between forEach and Map
  • Ans. 

    forEach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • forEach does not return a new array, while map does

    • forEach does not modify the original array, while map creates a new array

    • forEach is used for side effects, while map is used for transformation

    • Example: forEach - array.forEach(item => console.log(item)), map - const newAr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover JS basics

Skills evaluated in this interview

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

(1 Question)

  • Q1. What are the fundamental concepts of JavaScript that were discussed during the interview?
  • Ans. 

    Fundamental concepts of JavaScript discussed in the interview

    • Data types in JavaScript (string, number, boolean, object, array)

    • Functions and scope in JavaScript

    • DOM manipulation and event handling

    • Asynchronous programming with callbacks, promises, and async/await

    • Object-oriented programming concepts in JavaScript

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic network and os related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

1 hour 10 mins, MERN Stack, Face to Face. Mongodb, medium DSA Question, callback, eventloop, NodeJS asynchronous working

Interview Preparation Tips

Interview preparation tips for other job seekers - you should have prior experience in coding
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is HTML and CSS?
  • Ans. 

    HTML and CSS are markup languages used for creating and styling web pages.

    • HTML stands for HyperText Markup Language and is used for structuring content on web pages.

    • CSS stands for Cascading Style Sheets and is used for styling the appearance of web pages.

    • HTML uses tags to define elements like headings, paragraphs, images, and links.

    • CSS allows for customization of colors, fonts, layout, and other visual aspects of a web...

  • Answered by AI
  • Q2. Operating Systems, DBMS, Python

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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 

Low-level design interview
I need to design a Music player app using oops concept

Round 3 - One-on-one 

(5 Questions)

  • Q1. Sort the stack in O(1) time complexity
  • Ans. 

    Use an additional stack to store sorted elements and maintain the minimum element at the top of the original stack.

    • Create a new stack to store sorted elements.

    • Pop elements from the original stack and compare with the top element of the new stack.

    • If the popped element is smaller, push it to the new stack. If larger, keep popping from the new stack and push to the original stack until the correct position is found.

    • Repeat...

  • Answered by AI
  • Q2. Difference between process and thread
  • Ans. 

    A process is an instance of a program running on a computer, while a thread is a smaller unit of execution within a process.

    • A process has its own memory space, while threads within the same process share memory.

    • Processes are independent of each other, while threads within the same process can communicate with each other.

    • Processes are heavyweight, requiring separate memory and resources, while threads are lightweight an...

  • Answered by AI
  • Q3. Difference between abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any of these.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract class is used to provide a common base for multiple derived classes, while interface is used to define a contract fo...

  • Answered by AI
  • Q4. What is race condition?
  • Ans. 

    A race condition is a situation in which the outcome of a program depends on the order of execution of its threads or processes.

    • Occurs when multiple threads or processes access shared data or resources concurrently

    • Can lead to unpredictable behavior or bugs in the program

    • Prevented by using synchronization mechanisms like locks or semaphores

    • Example: Two threads trying to increment a shared variable simultaneously

  • Answered by AI
  • Q5. What is normalization in dbms
  • Ans. 

    Normalization in DBMS is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a database into smaller, more manageable tables.

    • It helps in reducing data redundancy by storing data in a structured way.

    • There are different normal forms like 1NF, 2NF, 3NF, BCNF, etc.

    • Example: In a database of students, instead of storing student details in multiple ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is policy manager
  • Ans. 

    Policy manager is a software tool used to centrally manage and enforce policies across an organization's systems and applications.

    • Policy manager helps define, monitor, and enforce policies related to security, compliance, access control, and other governance aspects.

    • It allows administrators to set rules and regulations that govern how data and resources are accessed and used within an organization.

    • Policy manager can au...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on actimize IFM.

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 Coding Test, Technical 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

Sde1 Interview Questions from Similar Companies

PayPal Sde1 Interview Questions
3.9
 • 1 Interview
Rupeek Sde1 Interview Questions
3.7
 • 1 Interview
ACKO Sde1 Interview Questions
3.8
 • 1 Interview
Yubi Sde1 Interview Questions
3.8
 • 1 Interview
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

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

Senior Software Engineer
20 salaries
unlock blur

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