Upload Button Icon Add office photos

Filter interviews by

Reliance Centro Customer Service Desk Team Member Interview Questions and Answers

Updated 13 Oct 2023

Reliance Centro Customer Service Desk Team Member Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed before Oct 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 

(1 Question)

  • Q1. Tell me something about Yourself. Why do you want to join Retail ? What are your Hobbies ?
Round 3 - One-on-one 

(1 Question)

  • Q1. Did you have PF , ESI on your previous company ?
Round 4 - HR 

(1 Question)

  • Q1. Do you have any criminal record previously ? And, the rest questions are same.

Interview Preparation Tips

Topics to prepare for Reliance Centro Customer Service Desk Team Member interview:
  • Communication Skills
  • Sales skills
Interview preparation tips for other job seekers - Don't join Reliance Retail cause there is no growth in your salary maybe you will get promoted to K2 if you're K1 and K2 if you're K3 but your salary will be the same. So basically you will get a tag of position but salary hike is not there.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Case Study 

They will literally ask you about your previous experience and job

Round 3 - One-on-one 

(1 Question)

  • Q1. Why did you want to join retail ?
Round 4 - One-on-one 

(1 Question)

  • Q1. Tell me something about yourself.What is your experience? Why did you left your previous organisation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Working over here is great colleagues are good and friendly but I will suggest not to join here as the Admin of the Kolkata Centro is not at all good. He doesn't know how to speak with others.

Customer Service Desk Team Member Interview Questions Asked at Other Companies

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Group Discussion 

The only thing that matters to you right here in your honestly

Round 2 - Group Discussion 

The most common way of dealing with this type is the following

Round 3 - Aptitude Test 

There are no other options than the fact you can use it

Round 4 - One-on-one 

(2 Questions)

  • Q1. The most common type for the species are those
  • Q2. They have been doing it all day and they don’t know what
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2022. There were 2 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 

(8 Questions)

  • Q1. Teem member is round the teem your friends life and self
  • Q2. Teem member and group discussions to share the problems to help
  • Q3. Teem member is round coding test to worker come to teem
  • Q4. Asking to teem member sear the help
  • Q5. Hr and group discussions with the problems to teem member is round coding for the help you get your
  • Q6. Teem member and Technical support of worker to round-on round
  • Q7. Teem member and hr and asaiment or all teem family to the working is no problem with you
  • Q8. Teem member and asaiment or all teem member and work on your Rescpons

Interview Preparation Tips

Interview preparation tips for other job seekers - Teem member round coding for you help me with your friends
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Backward coding .logical reasoning

Round 2 - Aptitude Test 

Relationships,number series

Round 3 - HR 

(2 Questions)

  • Q1. Self intradution
  • Q2. Self learning independent

Interview Preparation Tips

Interview preparation tips for other job seekers - be positive,don"t"be nervous
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I was interviewed in Apr 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

90 mcq will be there

Round 3 - Coding Test 

It's about some programming language

Round 4 - Technical 

(2 Questions)

  • Q1. About project in detail
  • Q2. Self introduction Project in real time

Interview Preparation Tips

Interview preparation tips for other job seekers - I didnt qualify my interview give me some advice for me
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Why do you want to change the job?
  • Q2. How long are u looking to be with Amazon?
Round 3 - One-on-one 

(1 Question)

  • Q1. Techinal assesement like team handling experience, conflict management, cost saving initatives

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for it good company

I applied via campus placement at National Institute of Technology (NIT), Durgapur and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

1 DP question, 1 simple integer manipulation

Round 2 - One-on-one 

(3 Questions)

  • Q1. 4th smallest element in BST
  • Ans. 

    Find the 4th smallest element in a Binary Search Tree.

    • Traverse the BST in-order and keep track of the count of visited nodes.

    • When the count reaches 4, return the current node's value.

    • If the BST has less than 4 nodes, return null or throw an exception.

  • Answered by AI
  • Q2. Maximum number of distinct elements in every sliding window of size k
  • Ans. 

    Find maximum distinct elements in every sliding window of size k.

    • Create a hash table to store the frequency of each element in the current window.

    • Use two pointers to maintain the current window and slide it over the array.

    • Update the hash table for each new element in the window and remove the old element.

    • Keep track of the maximum number of distinct elements seen so far.

    • Repeat until all windows of size k have been proce

  • Answered by AI
  • Q3. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists

    • Create a new linked list to store the merged list

    • Compare the first nodes of both lists and add the smaller one to the new list

    • Move the pointer of the added node to the next node

    • Repeat until one of the lists is empty

    • Add the remaining nodes of the non-empty list to the new list

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. A probability related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Striver SDE sheet and practice aptitude questions

Skills evaluated in this interview

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. It was all basics of adf. Step by step process
  • Q2. Like, what is adf - what is pipeline, what is IR. What's etc.
  • Ans. 

    ADF is Azure Data Factory, a cloud-based data integration service. Pipeline is a logical grouping of activities that perform a task. IR is Integration Runtime, a compute infrastructure used by ADF to provide data integration capabilities.

    • ADF is a cloud-based data integration service

    • Pipeline is a logical grouping of activities that perform a task

    • IR is Integration Runtime, a compute infrastructure used by ADF to provide

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. It's based on some case study. And more about real time scenarios. Deep understanding of adf in ground level
  • Q2. What is adf_publish, what if data factory deleted, what if trigger executed and pipeline execution failed. How to know and how to handle, and also on transformations like which IR is used.
  • Ans. 

    adf_publish is a command to publish data factory artifacts. Handling deletion, trigger execution, pipeline failure, and IR usage can be done through monitoring and logging.

    • adf_publish is used to publish data factory artifacts such as pipelines, datasets, and linked services

    • If data factory is deleted, all artifacts will be deleted as well. It is important to have backups and version control in place

    • Trigger execution can...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Team Member interview:
  • Azure data factory
Interview preparation tips for other job seekers - It's good to have deep level understanding of each step at work. We can easily get through.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test given to me was average for a team member. 1 hour duration for multiple choice questions

Round 2 - HR 

(4 Questions)

  • Q1. Tell me about yourself Why we should higher you
  • Q2. Why we should hire you
  • Q3. What are your expectations from the job and company
  • Q4. Where do you see yourself 5 years down the line

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company but prepare yourself for the role with basis knowledge of company goals

Reliance Centro Interview FAQs

How many rounds are there in Reliance Centro Customer Service Desk Team Member interview?
Reliance Centro interview process usually has 4 rounds. The most common rounds in the Reliance Centro interview process are One-on-one Round, Resume Shortlist and Case Study.

Tell us how to improve this page.

Reliance Centro Customer Service Desk Team Member Interview Process

based on 2 interviews

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3k Interviews
View all
Visual Merchandiser
5 salaries
unlock blur

₹3.5 L/yr - ₹5.9 L/yr

Department Manager
5 salaries
unlock blur

₹3.2 L/yr - ₹5.7 L/yr

Assistant Manager
3 salaries
unlock blur

₹8 L/yr - ₹8.3 L/yr

Store Manager
3 salaries
unlock blur

₹4.5 L/yr - ₹14.4 L/yr

Assistant Store Manager
3 salaries
unlock blur

₹7.5 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Reliance Centro with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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