Upload Button Icon Add office photos

Shopclues

Compare button icon Compare button icon Compare

Filter interviews by

Shopclues Interview Questions and Answers

Updated 14 Oct 2024
Popular Designations

10 Interview questions

A SRE was asked 8mo ago
Q. What is rsync in Linux?
Ans. 

rsync is a command-line tool for syncing files and directories between two locations on a Unix-like system.

  • rsync stands for remote sync.

  • It can be used to copy files locally or between a local and remote system.

  • rsync only transfers the differences between source and destination files, making it efficient for large transfers.

  • It can preserve permissions, timestamps, and other file attributes during synchronization.

  • Ex...

A SRE was asked 8mo ago
Q. What are the differences between UDP and TCP?
Ans. 

UDP is connectionless and faster, while TCP is connection-oriented and reliable.

  • UDP stands for User Datagram Protocol, while TCP stands for Transmission Control Protocol.

  • UDP is connectionless, meaning it does not establish a connection before sending data, while TCP is connection-oriented and establishes a connection before data transfer.

  • UDP is faster but less reliable as it does not guarantee delivery of packets,...

A SRE was asked 8mo ago
Q. What is load balancing?
Ans. 

Load balancing is the process of distributing network traffic across multiple servers to ensure optimal resource utilization and prevent overload.

  • Load balancing helps improve the performance, reliability, and scalability of applications by evenly distributing incoming traffic.

  • It can be achieved through various methods such as round-robin, least connections, IP hash, and weighted round-robin.

  • Examples of load balanc...

An Intern was asked 8mo ago
Q. Write code to create a pattern and explain each line of code.
Ans. 

Code to create a pattern and explain each line of code

  • Start by defining the number of rows and columns in the pattern

  • Use nested loops to iterate through each row and column

  • Decide the pattern you want to create and use conditional statements to determine the output for each position

View all Intern interview questions
A QA Engineer was asked 8mo ago
Q. What is the STLC process?
Ans. 

STLC (Software Testing Life Cycle) is a process followed by QA Engineers to ensure high quality software.

  • STLC involves planning, designing, executing, and reporting on tests.

  • It includes phases like requirement analysis, test planning, test design, test execution, and test closure.

  • Each phase has specific activities and deliverables to ensure thorough testing of the software.

  • Example: In requirement analysis, QA Engi...

View all QA Engineer interview questions
A QA Engineer was asked 8mo ago
Q. What is the SDLC process?
Ans. 

SDLC (Software Development Life Cycle) is a process used by software development teams to design, develop, test, and deploy software.

  • SDLC involves planning, designing, coding, testing, and deployment stages.

  • It ensures that software is developed efficiently and meets the requirements of stakeholders.

  • Common SDLC models include Waterfall, Agile, and DevOps.

  • Each stage of SDLC has specific goals and deliverables.

  • SDLC h...

View all QA Engineer interview questions
A Software Development Engineer Intern was asked 8mo ago
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reverse a linkedList

  • Iterate through the linked list and reverse the pointers

  • Use three pointers to keep track of current, previous, and next nodes

  • Update the pointers accordingly to reverse the list

View all Software Development Engineer Intern interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. Suppose there is a circle. There are n petrol pumps on that circle. You are given two sets of data. 1. The amount of petrol that every petrol pump has. 2. Distance from that petrol pump to the next petrol p...
Ans. 

The first circular tour that visits all petrol pumps can be found using the concept of a circular linked list.

  • Create a circular linked list with each node representing a petrol pump

  • Calculate the difference between petrol available at each pump and the distance to the next pump

  • Start from a pump where the sum of differences is positive and traverse the circular linked list until completing the tour

View all Software Developer interview questions
A SRE was asked 8mo ago
Q. 10 linux commands
Ans. 

Common Linux commands for system administrators

  • ls - list directory contents

  • cd - change directory

  • pwd - print working directory

  • cp - copy files and directories

  • mv - move or rename files and directories

  • rm - remove files or directories

  • grep - search text patterns

  • chmod - change file permissions

  • ps - display information about running processes

  • top - display and update sorted information about processes

An Intern was asked 8mo ago
Q. Oops concept in java
Ans. 

Oops concept in Java refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

  • Inheritance allows a class to inherit properties and behavior from another class.

  • Encapsulation involves bundling data and methods that operate on the data into a single unit.

  • Polymorphism allows objects to be treated as instances of their parent class.

  • Abstraction hides the implementat...

View all Intern interview questions

Shopclues Interview Experiences

9 interviews found

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

I applied via Campus Placement

Round 1 - Technical 

(3 Questions)

  • Q1. OOPS Related Questions
  • Q2. Reverse a linkedList
  • Ans. 

    Reverse a linkedList

    • Iterate through the linked list and reverse the pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the pointers accordingly to reverse the list

  • Answered by AI
  • Q3. Questions from your resume

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 14 Oct 2024

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

I applied via Walk-in and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions , easy and motivatiing

Round 2 - One-on-one 

(5 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a dedicated and experienced Site Reliability Engineer with a strong background in system administration and cloud computing.

    • Over 5 years of experience in managing and maintaining large-scale distributed systems

    • Proficient in cloud technologies such as AWS and Google Cloud Platform

    • Skilled in scripting languages like Python and Bash for automation tasks

    • Strong troubleshooting and problem-solving skills

    • Excellent commun...

  • Answered by AI
  • Q2. 10 linux commands
  • Ans. 

    Common Linux commands for system administrators

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • cp - copy files and directories

    • mv - move or rename files and directories

    • rm - remove files or directories

    • grep - search text patterns

    • chmod - change file permissions

    • ps - display information about running processes

    • top - display and update sorted information about processes

  • Answered by AI
  • Q3. What is load balancing
  • Ans. 

    Load balancing is the process of distributing network traffic across multiple servers to ensure optimal resource utilization and prevent overload.

    • Load balancing helps improve the performance, reliability, and scalability of applications by evenly distributing incoming traffic.

    • It can be achieved through various methods such as round-robin, least connections, IP hash, and weighted round-robin.

    • Examples of load balancing s...

  • Answered by AI
  • Q4. Difference in udp and tcp
  • Ans. 

    UDP is connectionless and faster, while TCP is connection-oriented and reliable.

    • UDP stands for User Datagram Protocol, while TCP stands for Transmission Control Protocol.

    • UDP is connectionless, meaning it does not establish a connection before sending data, while TCP is connection-oriented and establishes a connection before data transfer.

    • UDP is faster but less reliable as it does not guarantee delivery of packets, whil...

  • Answered by AI
  • Q5. What is rsync in linux?
  • Ans. 

    rsync is a command-line tool for syncing files and directories between two locations on a Unix-like system.

    • rsync stands for remote sync.

    • It can be used to copy files locally or between a local and remote system.

    • rsync only transfers the differences between source and destination files, making it efficient for large transfers.

    • It can preserve permissions, timestamps, and other file attributes during synchronization.

    • Example...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy , just be confident

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Oct 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sdlc what is process
  • Ans. 

    SDLC (Software Development Life Cycle) is a process used by software development teams to design, develop, test, and deploy software.

    • SDLC involves planning, designing, coding, testing, and deployment stages.

    • It ensures that software is developed efficiently and meets the requirements of stakeholders.

    • Common SDLC models include Waterfall, Agile, and DevOps.

    • Each stage of SDLC has specific goals and deliverables.

    • SDLC helps ...

  • Answered by AI
  • Q2. Stlc what is proces
  • Ans. 

    STLC (Software Testing Life Cycle) is a process followed by QA Engineers to ensure high quality software.

    • STLC involves planning, designing, executing, and reporting on tests.

    • It includes phases like requirement analysis, test planning, test design, test execution, and test closure.

    • Each phase has specific activities and deliverables to ensure thorough testing of the software.

    • Example: In requirement analysis, QA Engineers...

  • Answered by AI

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Aditi goel

posted on 11 Oct 2024

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

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round was a aptitude test of 25 question

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation d...

  • Answered by AI
  • Q2. Basic multi threading questions
Round 3 - Technical 

(2 Questions)

  • Q1. Code to make a pattern and explain each and every line of code
  • Ans. 

    Code to create a pattern and explain each line of code

    • Start by defining the number of rows and columns in the pattern

    • Use nested loops to iterate through each row and column

    • Decide the pattern you want to create and use conditional statements to determine the output for each position

  • Answered by AI
  • Q2. Puzzle: In how many minimum cut u can cut a cake in 8 piece

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic array question
Round 2 - Technical 

(1 Question)

  • Q1. Find the first circular tour that visits all petrol pumps
  • Ans. 

    The first circular tour that visits all petrol pumps can be found using the concept of a circular linked list.

    • Create a circular linked list with each node representing a petrol pump

    • Calculate the difference between petrol available at each pump and the distance to the next pump

    • Start from a pump where the sum of differences is positive and traverse the circular linked list until completing the tour

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

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

I applied via Naukri.com and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. How soon you join
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I need to provide a 2-week notice to my current employer.

    • I have some personal commitments that I need to wrap up before starting a new job.

    • I am excited about the opportunity and eager to join the team as soon as possible.

  • Answered by AI

Team Lead Interview Questions & Answers

user image Anonymous

posted on 17 Mar 2023

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

I applied via Naukri.com and was interviewed before Mar 2022. 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 - Assignment 

Give assignment and check how perfect the candidate is

Round 3 - HR 

(2 Questions)

  • Q1. If you like work then ask selery expectations
  • Q2. When will you join the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Create your portfolio best , keep enhance your work
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Introduction about ur self
Round 3 - One-on-one 

(1 Question)

  • Q1. About experience & all things.

SDE Interview Questions & Answers

user image Anshul Garg

posted on 10 Mar 2015

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself ?
  • Ans. 

    I am a highly motivated individual with a passion for learning and a strong work ethic.

    • I have a degree in computer science and have worked as a software developer for 3 years.

    • I am proficient in multiple programming languages including Java, Python, and C++.

    • I enjoy working in a team environment and am always willing to lend a helping hand.

    • In my free time, I enjoy hiking and playing guitar.

  • Answered by AI
  • Q2. What is your passion ?
  • Ans. 

    My passion is creating meaningful connections with people through storytelling and communication.

    • I love writing and sharing stories that inspire and connect with others

    • I enjoy public speaking and engaging with audiences

    • I am constantly seeking new ways to improve my communication skills

    • I believe that effective communication is key to building strong relationships

    • Examples: writing a blog, giving a TED talk, hosting a pod...

  • Answered by AI
  • Q3. What do you want to achieve ?
  • Ans. 

    I want to achieve personal and professional growth while making a positive impact on the world.

    • Develop new skills and knowledge through continuous learning

    • Advance in my career and take on new challenges

    • Contribute to society through volunteering and charitable work

    • Create meaningful relationships with family, friends, and colleagues

    • Maintain a healthy work-life balance

  • Answered by AI
  • Q4. Other personal questions

Interview Preparation Tips

Round: Technical Interview
Experience: The first round was started with few theoretical questions. The questions were either in the form of Puzzles, Data structures & Algorithms,
and a few php questions revolving around errors in PHP, sessions & cookies.
Tips: Your resume should be both clear & concise.

Round: HR Interview
Tips: Be confident & tell what they want to hear.

Skills: Algorithms, Web skills
College Name: IIT ROORKEE
Motivation: Passion for eCommerce.

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 Shopclues?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Ask experience for sale
  • Ans. 

    I have extensive experience in sales, focusing on building relationships and achieving targets through strategic planning and execution.

    • Developed and executed a sales strategy that increased revenue by 30% in one year.

    • Built strong relationships with clients, resulting in a 95% customer retention rate.

    • Conducted market research to identify new opportunities, leading to the successful launch of a new product line.

    • Trained ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - English must

Shopclues Interview FAQs

How many rounds are there in Shopclues interview?
Shopclues interview process usually has 2 rounds. The most common rounds in the Shopclues interview process are Technical, HR and Resume Shortlist.
How to prepare for Shopclues 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 Shopclues. The most common topics and skills that interviewers at Shopclues expect are Retail, Management, Senior Management, Communication Skills and Oracle.
What are the top questions asked in Shopclues interview?

Some of the top questions asked at the Shopclues interview -

  1. Code to make a pattern and explain each and every line of c...read more
  2. Puzzle: In how many minimum cut u can cut a cake in 8 pi...read more
  3. find the first circular tour that visits all petrol pu...read more
How long is the Shopclues interview process?

The duration of Shopclues interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 7 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 80%
2-4 weeks 20%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.7
 • 474 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Blinkit Interview Questions
3.8
 • 241 Interviews
Oyo Rooms Interview Questions
3.2
 • 231 Interviews
Myntra Interview Questions
3.9
 • 229 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
FirstCry Interview Questions
3.5
 • 187 Interviews
Tata 1mg Interview Questions
3.6
 • 187 Interviews
Spinny Interview Questions
3.6
 • 184 Interviews
View all

Shopclues Reviews and Ratings

based on 199 reviews

3.6/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.2

Salary

3.1

Job security

3.7

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 199 Reviews and Ratings
Product Manager

New Delhi

2-7 Yrs

Not Disclosed

Web Designer

New Delhi

6-7 Yrs

₹ 6.9-8.5 LPA

Web Analytics Manager

New Delhi

10-17 Yrs

Not Disclosed

Explore more jobs
Software Engineer
48 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Senior Analyst
44 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Analyst
35 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Senior Software Engineer
26 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Category Account Manager
24 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Explore more salaries
Compare Shopclues with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Snapdeal

3.8
Compare

Udaan

3.9
Compare
write
Share an Interview