Upload Button Icon Add office photos
Engaged Employer

i

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

ShopDeck Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 26 Reviews

Filter interviews by

ShopDeck Full Stack Developer Interview Questions and Answers

Updated 4 Jun 2024

Interview questions from similar companies

I was interviewed in Jul 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

  • Q1. Factorial of a Number

    You are given an integer ‘N’. You have to print the value of Factorial of ‘N’. The Factorial of a number ‘N’ is defined as the product of all numbers from 1 to ‘N’.

    For Example:
    Co...
  • Ans.  Using Linked List

    In this approach, we will calculate the factorial of the given number and store it in the form of a Linked List of digits named digits. To do this, we will define a function multiply(digits,x) that will multiply the number corresponding to the digits with x and update the digits with the product’s value. Then we will initialize the linked list digits with 1 and multiply it with all numbers from 2 to N...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

A lot of theoretical questions related to HTML, CSS, Javascript and React were asked along with 2 coding problems. It was a little challenging round because of the time limit with each question.

  • Q1. Print array Sum

    Given an array of length N, you need to find and print the sum of all elements of the array.

    Input Format :
    Line 1 : An Integer N i.e. size of array
    Line 2 : N integers which are elements...
  • Ans. Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was the CTO round, was asked to explain my projects in detail, he was testing if all the features were working the way I was explaining them.

  • Q1. Queue Using Stack

    Implement a queue data structure which follows FIFO(First In First Out) property, using only the instances of the stack data structure.

    Note:
    1. To implement means you need to complete ...
  • Ans. Costly enQueue

    We can make the enQueue operation costly, and perform the deQueue and all other operations in constant time. 

     

    We use two instances of the stack. Whenever we need to insert an element in the queue, we transfer all elements from stack 1 to stack 2, push the element in stack 1, and then again push all elements from stack 2 to stack 1. As the latest entered element is supposed to be at the back of t...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Ramaiah University of Applied Sciences. I applied for the job as Fullstack Developer in GurgaonEligibility criteriaNo criteriaPark+ interview preparation:Topics to prepare for the interview - React, Javascript, Data structures, NodeJs, Express, MongoDBTime required to prepare for the interview - 8 MonthsInterview preparation tips for other job seekers

Tip 1 : Put lots of time in clearing the basics first. 
Tip 2 : Don't rush to the next topic without understanding the current topic clearly. 
Tip 3 : Build few but good projects, put a lot of time in deciding how it looks and works. It's your golden chance to impress the interviewer.

Application resume tips for other job seekers

Tip 1 : Make a one page resume. 
Tip 2 : Customize the resume on the basis of job you're applying to. Remove all the irrelevant information that doesn't fit the particular job profile.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Impliment counter using closure in js
  • Ans. 

    Implement a counter using closure in JavaScript.

    • Create a function that returns another function which increments a counter variable.

    • The counter variable should be defined in the outer function's scope and only accessible to the inner function.

    • Each time the inner function is called, increment the counter variable and return its value.

  • Answered by AI
  • Q2. Explain promises, promise.all(), impliment binary search
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation. promise.all() is a method that takes an array of promises and returns a single promise that resolves when all of the promises have resolved.

    • Promises are used in JavaScript to handle asynchronous operations.

    • promise.all() takes an array of promises and returns a single promise that resolves when all promises in the array ha...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions on kafka, cache invalidation, diff b/w authentication and authorization

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up basics of js and microservices

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Solving normal Puzzles to test aptitude.

Round 2 - Coding Test 

Sample app was asked to create.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well domain specfic.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

They have their own coding platform. The questions are basically from tree.

Round 2 - Coding Test 

Tree of space question

Round 3 - Technical 

(2 Questions)

  • Q1. Previous round question solution
  • Q2. System design was asked.

Interview Preparation Tips

Topics to prepare for JUSPAY Software Developer interview:
  • tree
  • graph
  • system design
Interview preparation tips for other job seekers - Should have good knowledge of tree ,graph and system design.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions

I was interviewed in Apr 2022.

Round 1 - Coding Test 

Round duration - 75 minutes
Round difficulty - Medium

Test Comprises of 3 coding questions and some MCQs

Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

2 coding questions of (1 easy and 1 medium level) on hackerrank code-pair with the Interviewer

Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This Round was based on CS fundamentals and One coding question was there as a Code-pair.

  • Q1. Next greater Element

    For a given array/list of integers of size N, print the Next Greater Element(NGE) for every element. The Next Greater Element for an element X is the first element on the right side of...

  • Ans. Brute Force

    For every element in the array, we will run a loop on its right side. As soon as we find an element on its right side which is greater than it, we will break the loop, assign it as the NGE of this element, move forward, and do the same for the next element.

    Space Complexity: O(1)Explanation:

    O(1)

     

    No extra space is used.

    Time Complexity: O(n^2)Explanation:

    O(N ^ 2),  Where N is the number of elements ...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chandigarh Group of Colleges (CGC), Landran. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaClearwater Analytics interview preparation:Topics to prepare for the interview - DSA, Java, OOPS, Microservices, REST APITime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Require coding skills to pass the interview. 
Tip 2 : Brush up on Java Skills
Tip 3 : Brush up on OOPS

Application resume tips for other job seekers

Tip 1 : Keep it to one page
Tip 2 : Mention relevant skills as per the job

Final outcome of the interviewSelected

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 National Institute of Technology,(NIT), Delhi and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Explain hoisting in js
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. Explain closures in js
  • Ans. 

    Closures in JavaScript allow functions to access variables from their outer scope even after the outer function has finished executing.

    • Closures are created when a function is defined within another function and the inner function has access to the outer function's variables.

    • Closures can be used to create private variables and functions in JavaScript.

    • Closures can also be used to maintain state in asynchronous operations

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Javascript polyfills

Skills evaluated in this interview

ShopDeck Interview FAQs

How many rounds are there in ShopDeck Full Stack Developer interview?
ShopDeck interview process usually has 1 rounds. The most common rounds in the ShopDeck interview process are Coding Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
BigBasket Interview Questions
3.9
 • 346 Interviews
Myntra Interview Questions
4.0
 • 212 Interviews
Blinkit Interview Questions
3.7
 • 173 Interviews
Nykaa Interview Questions
3.5
 • 112 Interviews
Snapdeal Interview Questions
3.9
 • 75 Interviews
MagicPin Interview Questions
3.1
 • 48 Interviews
Park Plus Interview Questions
3.0
 • 35 Interviews
View all
Key Account Manager
10 salaries
unlock blur

₹3.5 L/yr - ₹4.8 L/yr

growth manager
8 salaries
unlock blur

₹5.7 L/yr - ₹12.5 L/yr

Assistant Manager
8 salaries
unlock blur

₹8.8 L/yr - ₹10 L/yr

Associate Manager
7 salaries
unlock blur

₹5.5 L/yr - ₹11 L/yr

Member Technical Staff
5 salaries
unlock blur

₹7.5 L/yr - ₹45.4 L/yr

Explore more salaries
Compare ShopDeck with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Snapdeal

3.9
Compare

Myntra

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