Upload Button Icon Add office photos
Engaged Employer

i

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

Reliance Retail Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Reliance Retail Web Developer Interview Questions and Answers

Updated 3 May 2024

Reliance Retail Web Developer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Web developer 

(4 Questions)

  • Q1. Programmer database
  • Q2. I want to join for the purpose of web developer (python developer)
  • Q3. Yes I am a programmer, in python base programming.
  • Q4. I have good skilling for one HTML,CSS,JAVASCRIPT,JQUERY,MYSQL,DJANGO,PYTHON THANK YOU 🙏🏼
Round 2 - Assignment 

I have created my some project

Round 3 - Web developer 

(2 Questions)

  • Q1. I have some web design
  • Q2. I am showing my project

Interview Preparation Tips

Topics to prepare for Reliance Retail Web Developer interview:
  • Programming
  • Development
  • Python developer
  • Web Designing
Interview preparation tips for other job seekers - I want to join for the position of web developer

Interview questions from similar companies

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

There were 2 coding questions given in this round. One was related to Dynamic Programming and the second one was related to Recursion and Number Theory.

  • Q1. 

    House Robber Problem Statement

    Mr. X is a professional robber with a plan to rob houses arranged in a circular street. Each house has a certain amount of money hidden, separated by a security system that ...

  • Ans. 

    House Robber problem where a robber wants to maximize stolen money without robbing adjacent houses in a circular street.

    • Use dynamic programming to keep track of maximum stolen money at each house.

    • Consider two cases: either rob the current house and skip the next, or skip the current house.

    • Handle circular arrangement by considering the first and last houses separately.

    • Example: For arr[] = {2, 3, 2}, the output is 3. Rob...

  • Answered by AI
  • Q2. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store and reuse previously calculated Fibonacci numbers.

    • Start with base cases F(1) and F(2) as 1, then calculate subsequent Fibonacci numbers.

    • Optimize the solution to avoid redundant calculations by storing intermediate results.

    • Time complexity can be reduced to O(N) using dynamic programming.

    • Example: For N = 5, the 5th F

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

Standard Data Structures and Algorithms round where I was given 2 questions to solve , one was from Linked List and the other was related to Priority Queue / Quick Sort .

  • Q1. 

    Intersection of Linked Lists Problem Statement

    You are provided with two linked lists, L1 and L2, both sorted in ascending order. Generate a new linked list containing elements that exist in both linked l...

  • Ans. 

    Given two sorted linked lists, find the intersection of elements in both lists and return a new sorted linked list.

    • Traverse both linked lists simultaneously to find common elements

    • Create a new linked list to store the intersecting elements

    • Ensure the final linked list is sorted in ascending order

    • Handle cases where there are no common elements between the lists

  • Answered by AI
  • Q2. 

    Kth Largest Element Problem Statement

    Ninja enjoys working with numbers, and Alice challenges him to find the Kth largest value from a given list of numbers.

    Input:

    The first line contains an integer 'T...
  • Ans. 

    Find the Kth largest element in a given list of numbers.

    • Sort the array in descending order.

    • Return the Kth element from the sorted array.

    • Handle multiple test cases efficiently.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Easy

This round majorly focused on Real life appications of Data Structures and also revolved around Object Oriented Programming Style of writing code .

  • Q1. 

    Data Structure with Insert, Delete, and GetRandom Operations

    Design a data structure that supports four operations: insert an element, remove an element, search for an element, and get a random element. E...

  • Ans. 

    Design a data structure with insert, delete, search, and getRandom operations, all in constant time.

    • Use a combination of HashMap and ArrayList to achieve constant time operations.

    • For insert operation, add the element to the ArrayList and store its index in the HashMap.

    • For delete operation, swap the element to be deleted with the last element in the ArrayList, update the index in the HashMap, and then remove the last el...

  • Answered by AI
  • Q2. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Implement a doubly linked list to maintain the order of keys based on their recent usage.

    • Use a hashmap to store key-value pairs for quick access.

    • When capacity is reached, evict the least recently used item before inserting a new item.

    • Update the position of a key in the linked list whenever it is accesse

  • Answered by AI
Round 4 - Face to Face 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

This round was inclined towards some Low Level Design Principles and some concepts from Java .

  • Q1. Design a Railway Reservation System.
  • Ans. 

    Design a Railway Reservation System

    • Create a database to store train schedules, seat availability, and passenger information

    • Implement a user interface for users to search for trains, book tickets, and view their reservations

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

    • Handle scenarios like waitlisting, cancellations, and refunds

    • Ensure data security and privacy of passenger information

  • Answered by AI
  • Q2. Why is Java considered platform-independent while the Java Virtual Machine (JVM) is platform-dependent?
  • Ans. 

    Java is platform-independent because the code is compiled into bytecode that can run on any platform with a JVM, which is platform-dependent due to its reliance on the underlying hardware and operating system.

    • Java code is compiled into bytecode, which can run on any platform with a JVM.

    • JVM acts as an interpreter that translates bytecode into machine code specific to the underlying hardware and operating system.

    • The JVM ...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAWalmart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Dec 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

This Round was DS and Algo round and it started with formal introduction, followed by 2 problems. We first dicussed the approach the time complexity and proper code covering all cases.

  • Q1. 

    Minimum Cost to Buy Oranges Problem Statement

    You are given a bag of capacity 'W' kg and a list 'cost' of costs for packets of oranges with different weights. Each element at the i-th position in the list...

  • Ans. 

    Find the minimum cost to buy a specific weight of oranges using given cost list.

    • Iterate through the cost list and find the minimum cost to achieve the desired weight

    • Keep track of the minimum cost while considering available packet weights

    • Return -1 if it is not possible to buy exactly W kg of oranges

  • Answered by AI
  • Q2. 

    K - Sum Path In A Binary Tree

    Given a binary tree where each node contains an integer value, and a value 'K', your task is to find all the paths in the binary tree such that the sum of the node values in ...

  • Ans. 

    Find all paths in a binary tree where the sum of node values equals a given value 'K'.

    • Traverse the binary tree using DFS and keep track of the current path and its sum.

    • At each node, check if the current sum equals 'K' and add the path to the result if true.

    • Continue traversal to the left and right child nodes recursively.

    • Return the list of paths that sum up to 'K'.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 40 Minutes
Round difficulty - Medium

This round majorly focused on puzzles and some questions revolving around Computer Networks and the projects in my resume .

  • Q1. You have two wires of different lengths that take different times to burn. How can you measure a specific amount of time using these two wires?
  • Ans. 

    Use two wires of different lengths to measure a specific amount of time by burning them simultaneously.

    • Burn both wires at the same time, one wire will burn faster than the other.

    • Measure the time it takes for the faster burning wire to completely burn.

    • Calculate the specific amount of time by using the ratio of the lengths of the two wires.

  • Answered by AI
  • Q2. You have 3 ants located at the corners of a triangle. The challenge is to determine the movement pattern of the ants if they all start moving towards each other. What will be the outcome?
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.

  • Q1. What do you know about the company?
  • Q2. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAWalmart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Puzzles, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Describe about bangalore
  • Ans. 

    Bangalore is a bustling city in southern India known for its IT industry and pleasant climate.

    • Known as the Silicon Valley of India

    • Home to numerous IT companies such as Infosys, Wipro, and TCS

    • Famous for its gardens and parks, including Lalbagh and Cubbon Park

    • Has a rich cultural heritage, with landmarks such as the Bangalore Palace and Tipu Sultan's Summer Palace

    • Renowned for its food, with local specialties such as masal

  • Answered by AI

Interview Questionnaire 

2 Questions

  • Q1. OOPS Concepts
  • Q2. Threads Concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on basic java

Associate Interview Questions & Answers

Walmart user image amruta tabhane

posted on 7 May 2022

I applied via Walk-in and was interviewed before May 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Firstly our intro like personal information ,Education regarding questions..then the ask this your first job or experience..regarding any other job perferd then they will see your physical strength are you...
  • Ans. Same as per the ask questions..
  • Answered by amruta tabhane

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best everyone for your job interview..get more experience more working knowledge..very well thankyou..

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This was a proctured online coding round where we had 2 questions to solve under 90 minutes . The questions were of easy to medium level I would say with some lenghty implementations .

  • Q1. 

    Minimum Numbers Required Problem Statement

    Given an array 'ARR' consisting of N integers, along with two integers, 'SUM' and 'MAXVAL', you need to determine the minimum number of integers to be added to t...

  • Ans. 

    Determine the minimum number of integers to be added to an array to make its sum equal to a given value.

    • Iterate through the array and calculate the current sum.

    • Determine the difference between the target sum and the current sum.

    • Add the minimum number of integers within the range of -MAXVAL to MAXVAL to reach the target sum.

  • Answered by AI
  • Q2. 

    Maximum Sum Subsequence Problem Statement

    Given an array of integers NUMS consisting of N integers and an integer K, determine the maximum sum of an increasing subsequence with exactly K elements.

    Exampl...

  • Ans. 

    Find the maximum sum of an increasing subsequence with exactly K elements in an array of integers.

    • Iterate through the array and maintain a dynamic programming table to store the maximum sum of increasing subsequences ending at each index.

    • For each element, check all previous elements to find the increasing subsequence with maximum sum ending at that element.

    • Update the dynamic programming table with the maximum sum found...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

Standard Data Structures and Algorithms round . One has to be fairly comfortable in solving algorithmic problems to
pass this round with ease.

  • Q1. 

    Check Whether Binary Tree Is Complete

    You have been given a binary tree and your task is to determine if it is a Complete Binary Tree or not.

    A Complete Binary Tree is defined as a binary tree where ever...

  • Ans. 

    Check if a binary tree is a Complete Binary Tree or not based on given criteria.

    • Traverse the binary tree level by level and check if all levels are completely filled except the last one.

    • Ensure all nodes at the last level are positioned at the leftmost side.

    • Use level order traversal to check for completeness of the binary tree.

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1, the output should be 1.

  • Answered by AI
  • Q2. 

    Consecutive Elements

    Given an array arr of N non-negative integers, determine whether the array consists of consecutive numbers. Return true if they do, and false otherwise.

    Input:

    The first line of inp...
  • Ans. 

    Check if an array of integers consists of consecutive numbers.

    • Iterate through the array and check if the absolute difference between consecutive elements is 1.

    • Sort the array and check if the elements are consecutive.

    • Use a set to store the elements and check if the size of the set is equal to the length of the array.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 40 Minutes
Round difficulty - Medium

This round majorly focused on my projects and some standard questions revolving around Operating Systems and DBMS.

  • Q1. How can you print numbers from 1 to 100 using more than two threads in an optimized approach?
  • Ans. 

    Use multiple threads to print numbers from 1 to 100 in an optimized approach.

    • Divide the range of numbers (1-100) among the threads to avoid duplication.

    • Use synchronization mechanisms like mutex or semaphore to ensure proper order of printing.

    • Consider using a shared data structure like a queue to coordinate the threads.

    • Implement a mechanism to signal the threads when to start and stop printing.

  • Answered by AI
  • Q2. What are the advantages of using views in a database management system?
  • Ans. 

    Views in a database management system provide data security, simplify complex queries, and improve performance.

    • Enhanced security by restricting access to certain columns or rows

    • Simplify complex queries by pre-defining joins and filters

    • Reduce redundancy by storing commonly used queries as views

    • Improve performance by storing pre-processed data in views

    • Allow for data abstraction, making it easier to work with complex data

  • Answered by AI
Round 4 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.

  • Q1. What do you know about the company?
  • Q2. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAWalmart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. As a sales associate in future Retail Limited from 12 Jun 2018, i do good customer service. Accept challenges and good display creativity talent. Good Promance in store programs & activitys. Believe in tea...

Interview Preparation Tips

Interview preparation tips for other job seekers - Dear sir,
As a sales associate in future Retail Limited from 12.jun.2018, i do good customer service. Accept challenges and good display creativity talent. Good Promance in store programs & activitys. Believe in team work and self motivated. To understand the responsibilities and do according to situation dedication willingness to work and strong commitments towards quality.

I applied via Referral and was interviewed in Aug 2022. There were 4 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 - One-on-one 

(2 Questions)

  • Q1. How many members are there in your family
  • Q2. There are four members in my family
Round 3 - HR 

(2 Questions)

  • Q1. Where you live and your parents
  • Q2. I am live in Jammu and Kashmir
Round 4 - HR 

(2 Questions)

  • Q1. How many kids in your home
  • Q2. There is no kids in my house

Interview Preparation Tips

Interview preparation tips for other job seekers - Free to talk with hr like your brother his friend is sa aap ka
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Feb 2023. 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 

(4 Questions)

  • Q1. Data explain about yourself
  • Ans. 

    I am a highly motivated and detail-oriented individual with a strong background in data analysis and problem-solving.

    • Proficient in data manipulation and analysis using tools like Excel, SQL, and Python.

    • Experienced in conducting statistical analysis and creating data visualizations.

    • Strong problem-solving skills with the ability to identify patterns and trends in data.

    • Excellent communication skills, both written and verb...

  • Answered by AI
  • Q2. Explain About yourself
  • Ans. 

    I am a highly motivated and detail-oriented individual with a strong background in finance and accounting.

    • Bachelor's degree in Finance

    • 3 years of experience in financial analysis

    • Proficient in financial modeling and forecasting

    • Strong analytical and problem-solving skills

    • Excellent communication and interpersonal skills

  • Answered by AI
  • Q3. Explain knowledge and skills
  • Ans. 

    Knowledge and skills refer to the understanding and abilities that an individual possesses.

    • Knowledge is the theoretical understanding of a subject or topic.

    • Skills are the practical abilities to perform tasks or apply knowledge.

    • Knowledge can be acquired through education, training, or experience.

    • Skills are developed through practice and hands-on experience.

    • Examples of knowledge include understanding of programming langu...

  • Answered by AI
  • Q4. Explain about qualification
  • Ans. 

    Qualification refers to the education, skills, and experience required for a particular job or role.

    • Qualification includes academic degrees, certifications, and relevant work experience.

    • It demonstrates the candidate's knowledge, expertise, and ability to perform the job.

    • Examples of qualifications can be a Bachelor's degree in Computer Science, a certification in project management, or 5 years of experience in marketing...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Knowledge about vacancy requirements

Interview Preparation Tips

Interview preparation tips for other job seekers - Come in formal dress and proper grooming and not nervous

Reliance Retail Interview FAQs

How many rounds are there in Reliance Retail Web Developer interview?
Reliance Retail interview process usually has 3 rounds. The most common rounds in the Reliance Retail interview process are Assignment.
What are the top questions asked in Reliance Retail Web Developer interview?

Some of the top questions asked at the Reliance Retail Web Developer interview -

  1. I want to join for the purpose of web developer (python develop...read more
  2. I have good skilling for one HTML,CSS,JAVASCRIPT,JQUERY,MYSQL,DJANGO,PYTHON T...read more
  3. Yes I am a programmer, in python base programmi...read more

Tell us how to improve this page.

Reliance Retail Web Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

DMart Interview Questions
3.9
 • 401 Interviews
Walmart Interview Questions
3.8
 • 386 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Landmark Group Interview Questions
4.0
 • 147 Interviews
V-Mart Interview Questions
4.1
 • 146 Interviews
Lowe's Interview Questions
4.2
 • 127 Interviews
Croma Interview Questions
4.0
 • 127 Interviews
Tesco Interview Questions
3.8
 • 121 Interviews
Reliance Digital Interview Questions
4.1
 • 117 Interviews
View all
Assistant Manager
4.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Store Manager
4.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Department Manager
3.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
2.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
1.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Reliance Retail with

Future Retail

4.3
Compare

Tata Group

4.2
Compare

Aditya Birla Fashion and Retail

4.1
Compare

Spencer's Retail

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