Upload Button Icon Add office photos

Filter interviews by

Reliance Group Support Services Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Case Study 

What do I do, what do I know, What would I do if I were given the opportunity?

Round 2 - One-on-one 

(2 Questions)

  • Q1. Test regarding knowledge about purchasing, my knowledge about communication, about computer
  • Q2. Basically the wanted to know how can I handle if I get any positive response from them
Round 3 - HR 

(2 Questions)

  • Q1. About sallary in previous company
  • Q2. Address, documents, other financial package

Interview Preparation Tips

Interview preparation tips for other job seekers - There's nothing to say in that sense, but you have to prepare well, because I was selected after 2 interviews.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Two coding questions related to matrices and heaps.

Round 2 - Technical 

(1 Question)

  • Q1. Python and SQL coding
Round 3 - Technical 

(1 Question)

  • Q1. Same questions like tech 1
Round 4 - HR 

(2 Questions)

  • Q1. Self intro , why tiger
  • Q2. Relocation

Interview Preparation Tips

Topics to prepare for Tiger Analytics Data Analyst interview:
  • Python
  • SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. How handling team and process discrepancy the Breaks and handling call to oversight team for error call.
  • Q2. I will learn new things and growth
  • Q3. How setup new funds
  • Q4. We have behaviour in management
  • Q5. Always positive thoughts and hard work

Interview Preparation Tips

Topics to prepare for Statestreet HCL Services Reconciliation Specialist interview:
  • Bank Reconciliation
Interview preparation tips for other job seekers - Some of the people they don't talk properly but they will do great hard worker and smart work. You have to give to chance to them develop and trainings.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. HTML, CSS fundamentals
  • Q2. Javascript event loop and array methods
  • Q3. Javascript coding for operation on object array
  • Ans. 

    Performing operations on an array of objects using JavaScript.

    • Use array methods like map, filter, reduce for operations on object array.

    • Access object properties using dot notation or bracket notation.

    • Iterate through the array using loops like for loop or forEach method.

    • Example: Calculate total sum of 'price' property in an array of products.

  • Answered by AI
  • Q4. React benefits and Redux implementations
  • Q5. How to create slice and combine reducers
  • Ans. 

    To create slice and combine reducers in React, use the createSlice and combineReducers functions from Redux toolkit.

    • Use createSlice function to define a slice of state with reducers and actions.

    • Example: const counterSlice = createSlice({ name: 'counter', initialState: 0, reducers: { increment: state => state + 1, decrement: state => state - 1 } })

    • Use combineReducers function to combine multiple slices into a sing...

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Questions based on projects, role, responsibilities and initiative at work place
  • Q2. How to create and optimize a react application
  • Ans. 

    To create and optimize a React application, focus on efficient component structure, state management, code splitting, lazy loading, and performance monitoring.

    • Use functional components and hooks for better performance.

    • Implement state management with tools like Redux or Context API.

    • Split code into smaller chunks and lazy load components for faster initial load times.

    • Optimize performance by minimizing re-renders and usin...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Day to day activity of workplace and salary negotiation
  • Ans. 

    Day to day activities involve coding, debugging, testing, collaborating with team members. Salary negotiation involves research, preparation, and effective communication.

    • Coding and developing new features

    • Debugging and fixing issues

    • Testing code for quality assurance

    • Collaborating with team members for project progress

    • Researching market rates for salary negotiation

    • Preparing a strong case for desired salary

    • Effectively comm

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Why do you want to join swiggy?
  • Q2. Sales pitch taking swiggy product in mind
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are the different types of interfaces?
  • Ans. 

    Different types of interfaces include user interfaces, hardware interfaces, and software interfaces.

    • User interfaces: allow users to interact with the system, such as graphical user interfaces (GUI) and command-line interfaces (CLI)

    • Hardware interfaces: connect hardware components to the system, such as USB, HDMI, and Ethernet ports

    • Software interfaces: define how software components interact with each other, such as appl...

  • Answered by AI
  • Q2. What is the output of the program when the expression is evaluated as 0 divided by 7?
  • Ans. 

    The output of the program when 0 is divided by 7 is 0.

    • Division of 0 by any number results in 0.

    • In programming languages, dividing by 0 usually results in an error or undefined behavior.

  • Answered by AI
  • Q3. What are coroutines, scope functions, and visibility modifiers?
  • Ans. 

    Coroutines, scope functions, and visibility modifiers are key concepts in Kotlin programming for Android development.

    • Coroutines are a way to perform asynchronous programming in a sequential manner. They allow for non-blocking operations.

    • Scope functions are functions that allow you to execute a block of code within the context of an object. Examples include 'let', 'apply', 'run', 'also', and 'with'.

    • Visibility modifiers ...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What is the MVVM (Model-View-ViewModel) architectural pattern?
  • Ans. 

    MVVM is an architectural pattern that separates the user interface from the business logic and data handling in Android development.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the UI elements and sending user interactions to the ViewModel.

    • ViewModel acts as a mediator between the Model and the View, handling the communication and data flow.

    • MVVM helps in achieving se...

  • Answered by AI
  • Q2. What are the reasons for using that, and what are its pros and cons?
  • Ans. 

    Using dependency injection in Android development can improve code maintainability and testability.

    • Pros: easier to manage dependencies, promotes code reusability, facilitates unit testing

    • Cons: initial setup can be complex, may introduce overhead in smaller projects

    • Example: Using Dagger 2 for dependency injection in an Android project

  • Answered by AI
  • Q3. Questions related Dependency injection dagger-hilt / koin
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. What basic questions have you been asked regarding your accomplishments and achievements?
  • Q2. Technical regarding excel
Round 2 - HR 

(1 Question)

  • Q1. Why do you believe you are a good fit for this role?
  • Ans. 

    I have a proven track record of successfully managing key accounts and developing strong relationships with clients.

    • Extensive experience in key account management

    • Strong communication and negotiation skills

    • Ability to identify and capitalize on business opportunities

    • Track record of exceeding sales targets

    • Excellent relationship-building skills

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Excel questions about vlookup
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Group Discussion 

Some persons are discussing the company and jobs

Round 2 - One-on-one 

(5 Questions)

  • Q1. What experience in this field
  • Q2. What kind of job works before
  • Q3. Any reason choose this platform
  • Ans. 

    I chose this platform because of its strong reputation in the industry and its proven track record of success.

    • Strong reputation in the industry

    • Proven track record of success

    • Positive reviews from current and past employees

    • Opportunities for growth and advancement

    • Innovative and cutting-edge technology

  • Answered by AI
  • Q4. When you start your platform
  • Q5. Are you sure this job is perfect

Interview Preparation Tips

Interview preparation tips for other job seekers - You are select intresting jobs
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. I am eligible to work in banking sector hence I worked with HSBC and JP Morgan earlier.
  • Q2. You can just let me know the process structure and explain me in one attempt. I can be able to handle all the queries in an easy manner. Please do the needful. Thankyou.

Interview Preparation Tips

Interview preparation tips for other job seekers - I can be able to handle the cards payment customers. Hence eagerly waiting to join as early as possible.

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

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

Round 1 - Assignment 

Some questions Related to the profile you have applied.

Round 2 - Video Call 

(3 Questions)

  • Q1. There was some video rounds like experience
  • Q2. About your personality
  • Q3. About job profile

Interview Preparation Tips

Interview preparation tips for other job seekers - It was wonderful experience and very easy selection process.

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 419 Interviews
Senco Gold Interview Questions
4.5
 • 374 Interviews
Planet Spark Interview Questions
3.7
 • 354 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 322 Interviews
Ekart Logistics Interview Questions
4.0
 • 292 Interviews
CitiusTech Interview Questions
3.4
 • 262 Interviews
NeoSOFT Interview Questions
4.0
 • 250 Interviews
ElasticRun Interview Questions
3.5
 • 244 Interviews
Morningstar Interview Questions
4.0
 • 238 Interviews
View all

Reliance Group Support Services Reviews and Ratings

based on 17 reviews

4.2/5

Rating in categories

4.4

Skill development

4.0

Work-Life balance

3.5

Salary & Benefits

4.6

Job Security

4.2

Company culture

4.2

Promotions/Appraisal

4.0

Work Satisfaction

Explore 17 Reviews and Ratings
Security Manager
11 salaries
unlock blur

₹9.5 L/yr - ₹12.6 L/yr

Senior Security Manager
8 salaries
unlock blur

₹11.3 L/yr - ₹19.2 L/yr

Security Executive
7 salaries
unlock blur

₹6 L/yr - ₹9.5 L/yr

Senior Manager
6 salaries
unlock blur

₹10.9 L/yr - ₹12.5 L/yr

Security Officer
5 salaries
unlock blur

₹5.8 L/yr - ₹8 L/yr

Explore more salaries
Compare Reliance Group Support Services with

Udaan

4.0
Compare

Ekart Logistics

4.0
Compare

Home Credit Finance

4.1
Compare

SBI Cards & Payment Services

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview