Upload Button Icon Add office photos

StockX

Compare button icon Compare button icon Compare

Filter interviews by

StockX Interview Questions and Answers

Updated 18 Sep 2024
Popular Designations

StockX Interview Experiences

3 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2024

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Delta Lake, SCD2, ADF, Data Modelling, OLAP & OLTP
  • Q2. Lazy evaluation, Repartition & Partition by
  • Q3. SQL Joins - inner, outer, left & right

Interview Preparation Tips

Interview preparation tips for other job seekers - Generic questions, but prepare well
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find Kth largest element
  • Ans. 

    Use sorting or heap data structure to find the Kth largest element in an array.

    • Sort the array in descending order and return the element at index K-1.

    • Use a max heap to store the elements and pop K-1 elements to get the Kth largest element.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Data Structure / Algo Leetcode medium

Round 2 - One-on-one 

(1 Question)

  • Q1. System Design question about designing a ecommerce
  • Ans. 

    Design a scalable e-commerce platform with user-friendly features and robust backend architecture.

    • User Authentication: Implement OAuth for secure login (e.g., Google, Facebook).

    • Product Catalog: Use a NoSQL database for flexible product attributes (e.g., MongoDB).

    • Search Functionality: Integrate Elasticsearch for fast and relevant search results.

    • Shopping Cart: Maintain user sessions with Redis for quick access to cart da...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Regualar HR questions about prvious jobs, work history

Interview Preparation Tips

Topics to prepare for StockX Senior Software Engineer interview:
  • caching
  • System Design
  • Data Structures
  • Algorithms

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about StockX?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Jun 2019. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. No relevant questions to the job
  • Q2. Basic English tests

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are qualified above graduation, this is not the job you should be looking for.

I applied via LinkedIn and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions were from SQL, Python, Statistics & Business Case Studies/Metrics in the form of 4-5 rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - So Key Takeaway is You have to be good with your Technical Knowledge (SQL Expert, Python, Overall Stats Knowledge) and That is not really enough. What differs a Business Analyst from other Developers/Statisticians etc. is Business acumen, Problem Solving Skills etc. To have a Business Knowledge and Understanding such that you find the problems/solutions/ Metrics and then solve them using the Technology.

I applied via Recruitment Consultant and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions are about fresh department only

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know about fresh department

I appeared for an interview before Apr 2021.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

It was in the mid day and since I applied for a Frontend role the discussion was majorly around data structure and bit of Javascript.
The interviewer was helping and good listener.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was more of a in depth round on the framework I'm working on and problem solving.

  • Q1. What is the event loop and what is its significance?
  • Ans. 

    The event loop is a mechanism in programming that allows for asynchronous execution of code.

    • The event loop is a key component in JavaScript's runtime environment, responsible for handling asynchronous operations.

    • It continuously checks the call stack for any pending tasks and executes them in a non-blocking manner.

    • The event loop ensures that the program remains responsive by allowing other code to run while waiting for ...

  • Answered by AI
  • Q2. Can you provide examples of output-based questions in JavaScript that utilize browser APIs?
  • Ans. 

    Output-based questions in JavaScript using browser APIs

    • Example 1: Write a script that uses the Geolocation API to display the user's current location on a map

    • Example 2: Create a program that uses the Web Audio API to play a sound when a button is clicked

    • Example 3: Develop a web page that uses the Canvas API to draw a simple animation

  • Answered by AI
  • Q3. How would you design a system to support localization in a mobile app?
  • Ans. 

    Designing a system to support localization in a mobile app

    • Use resource files to store localized strings for different languages

    • Implement a language selection feature for users to choose their preferred language

    • Utilize localization libraries or frameworks to streamline the process

    • Consider cultural differences when localizing content, such as date formats and currency symbols

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 75 Minutes
Round difficulty - Hard

It was more of a fitment/managerial round.
Didn't had any coding questions, but was asked more on approaches and optimisations.
Discussions on the project you have worked on.

  • Q1. You need to find the fastest 3 horses out of a group, given that you can only race 5 horses at a time. How would you approach this problem?
  • Ans. 

    To find the fastest 3 horses out of a group with 5 horses racing at a time, we can use a tournament style approach.

    • Divide the horses into groups of 5 and race them against each other. This will give you the fastest horse in each group.

    • Take the winners from each group and race them against each other. The top 3 horses in this final race will be the fastest 3 overall.

    • Keep track of the results and compare the timings to d...

  • Answered by AI
  • Q2. How do you debug the root cause of lag on a screen?
  • Ans. 

    To debug lag on a screen, analyze code, check for memory leaks, optimize rendering, and use profiling tools.

    • Analyze code to identify any inefficient algorithms or operations causing lag.

    • Check for memory leaks that could be impacting performance.

    • Optimize rendering by reducing the number of draw calls, optimizing shaders, and minimizing overdraw.

    • Use profiling tools like Xcode Instruments or Android Profiler to identify p...

  • Answered by AI
  • Q3. Can you explain the architecture of the app you have recently worked on?
  • Ans. 

    The app I recently worked on is a social media platform for sharing photos and connecting with friends.

    • The app follows a client-server architecture, with the client being the mobile app and the server handling data storage and processing.

    • The client side is built using React Native for cross-platform compatibility.

    • The server side is implemented using Node.js with a MongoDB database for storing user data and photos.

    • The a...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaCars24 interview preparation:Topics to prepare for the interview - Data Structures Algorithms, Javascript, System DesignTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Get your JS fundamentals right (if applying for a Frontend role, https://javascript.info/ is a good start)
Tip 2 : Apart from preparing data structures, practise on the communication skills as well (prepare your introduction, be a good listener and on spot improvisation plays key roles)

Application resume tips for other job seekers

Tip 1 : highlight projects related to the job profile in your resume and mention what was your contribution in them precisely in 1/2 lines.
Tip 2 : Include URLs to applications/projects that you have build and your achievements/blog (if any)

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

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

Interview Questionnaire 

1 Question

  • Q1. Prime number star pattern Js basics form validations

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all basics of JS and node

I applied via Naukri.com and was interviewed before Jul 2021. 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 tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about your self
  • Ans. My name is Kritika, I have 2 siblings, my mom is house wife and and I love dogs, my favourite thing traveling, i was passed m.com in 2019 from awadh university. I have 5 years experience work different different fields, like 1st job in publication and 2nd job in advertising company as a project manager and Last one cars24 Pvt Ltd corporate office as a associate
  • Answered by Kirtika
Round 3 - Aptitude Test 

Convenience power, Patience

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be given with full confidence and should not be afraid

I applied via Walk-in and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Job profile
  • Q2. Describe yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Was nice and friendly atmosphere

StockX Interview FAQs

How many rounds are there in StockX interview?
StockX interview process usually has 1-2 rounds. The most common rounds in the StockX interview process are Technical, Coding Test and One-on-one Round.
How to prepare for StockX 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 StockX. The most common topics and skills that interviewers at StockX expect are Microsoft Power BI, Accessories, AWS, Consumer Goods and Python.
What are the top questions asked in StockX interview?

Some of the top questions asked at the StockX interview -

  1. System Design question about designing a ecomme...read more
  2. Find Kth largest elem...read more
  3. Delta Lake, SCD2, ADF, Data Modelling, OLAP & O...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 3 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.7
 • 474 Interviews
Meesho Interview Questions
3.7
 • 369 Interviews
CARS24 Interview Questions
3.5
 • 361 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Zepto Interview Questions
3.5
 • 296 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
Tata 1mg Interview Questions
3.6
 • 188 Interviews
Digit Insurance Interview Questions
3.8
 • 158 Interviews
Paisabazaar.com Interview Questions
3.4
 • 156 Interviews
AmbitionBox Interview Questions
4.8
 • 150 Interviews
View all

StockX Reviews and Ratings

based on 10 reviews

2.8/5

Rating in categories

2.3

Skill development

3.5

Work-life balance

3.3

Salary

1.9

Job security

2.8

Company culture

2.5

Promotions

2.5

Work satisfaction

Explore 10 Reviews and Ratings
Software Engineer

Bangalore / Bengaluru

2-4 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
12 salaries
unlock blur

₹37 L/yr - ₹57 L/yr

Senior Business Analyst
9 salaries
unlock blur

₹30 L/yr - ₹32 L/yr

Software Engineer
7 salaries
unlock blur

₹24 L/yr - ₹35 L/yr

Fraud Analyst
6 salaries
unlock blur

₹14.2 L/yr - ₹15.1 L/yr

Devops Engineer
6 salaries
unlock blur

₹30.1 L/yr - ₹32 L/yr

Explore more salaries
Compare StockX with

Udaan

3.9
Compare

Swiggy

3.7
Compare

CARS24

3.5
Compare

BlackBuck

3.7
Compare
write
Share an Interview