Upload Button Icon Add office photos
Engaged Employer

i

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

Gmoney Pvt. Ltd. Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Gmoney Pvt. Ltd. Interview Questions and Answers

Updated 13 Sep 2024

Gmoney Pvt. Ltd. Interview Experiences

Popular Designations

5 interviews found

Chief Manager Interview Questions & Answers

user image Manan Shah

posted on 7 Aug 2024

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

I applied via LinkedIn and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me something about yourself
  • Ans. 

    Experienced Chief Manager with a background in finance and a proven track record of leading successful teams.

    • Over 10 years of experience in finance and management

    • Led a team that increased company profits by 20% in one year

    • Skilled in strategic planning and decision-making

  • Answered by AI
  • Q2. What do you know about GMoney
  • Ans. 

    GMoney is a mobile money service provided by GCB Bank in Ghana.

    • GMoney allows users to send and receive money, pay bills, and make purchases using their mobile phones.

    • Users can also withdraw cash from authorized agents and ATMs.

    • The service is convenient, secure, and widely accepted across Ghana.

    • GMoney offers various promotions and discounts to encourage its usage.

  • Answered by AI

Chief Manager Interview Questions asked at other Companies

Q1. What was the strategy to increase business share in particular role ! How will you increase market share in ICICI bank .
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Previous job roles and responsibilities
  • Ans. 

    Managed client relationships, analyzed financial data, developed strategies for growth

    • Managed a portfolio of clients and provided personalized financial advice

    • Analyzed financial statements and identified opportunities for growth

    • Developed and implemented strategies to increase client satisfaction and retention

    • Collaborated with internal teams to address client needs and resolve issues

    • Organized client events and seminars

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

(1 Question)

  • Q1. Loan and Area knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - HR - Miss Nikita , very cooperative and polite
Very smooth onboarding process

Relationship Manager Interview Questions asked at other Companies

Q1. How will you market banking products ? Are you willing to work at the ground level ? What are the challenges of marketing at ground level ? How different is it from other kinds of marketing? What did you learn in mba with respect to marketi... read more
View answer (48)

TPA Executive Interview Questions & Answers

user image Anonymous

posted on 11 Apr 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Ask about my work process
  • Q2. How many patient do you deal in a day

TPA Executive Interview Questions asked at other Companies

Q1. What is Discharge procedure and how can you follow-up with TPA's
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 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 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am an experienced Territory Manager with a proven track record in driving sales and building strong customer relationships.

    • I have successfully managed a territory of 10 states, consistently exceeding sales targets by 20%.

    • I have a deep understanding of the market dynamics and competition, allowing me to develop effective sales strategies.

    • I am skilled in building and nurturing relationships with key accounts, resulting...

  • Answered by AI
  • Q2. What is your salary expectations
  • Ans. 

    I am open to discussing salary based on the responsibilities and expectations of the role.

    • Focus on the value you can bring to the company rather than a specific number

    • Research the average salary range for Territory Managers in your industry and location

    • Consider your experience, skills, and qualifications when determining your salary expectations

    • Be prepared to negotiate and discuss other benefits or incentives

  • Answered by AI
  • Q3. Are you willing to relocate
  • Ans. 

    Yes, I am willing to relocate for the Territory Manager position.

    • I am open to moving to a new location for the job.

    • I understand that being a Territory Manager may require travel and relocation.

    • I am flexible and adaptable to new environments.

    • I have previous experience relocating for work.

    • I am excited about the opportunity to explore new territories and markets.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be professional and your communication skills should be good

Territory Manager Interview Questions asked at other Companies

Q1. What is a go to market approach for acquiring new customers in a competitor's territory.
View answer (6)

Gmoney Pvt. Ltd. interview questions for popular designations

 Territory Manager

 (1)

 Chief Manager

 (1)

 Relationship Manager

 (1)

 Sales Manager

 (1)

 TPA Executive

 (1)

Sales Manager Interview Questions & Answers

user image Anonymous

posted on 18 Feb 2022

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.
Round 2 - HR 

Sales Manager Interview Questions asked at other Companies

Q1. If you're in Cold areas like Kashmir or Himachal Pradesh. & You have to sell an AC which is having only Cold option. How would you do that?
View answer (18)

Interview questions from similar companies

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Total of 8 questions:

4 MCQ(oops and expected output type questions) + other 2 were coding questions, out of which one is some class implementation question.

  • Q1. 

    Count Subarrays with Sum Divisible by K

    Given an array ARR and an integer K, your task is to count all subarrays whose sum is divisible by the given integer K.

    Input:

    The first line of input contains an...
  • Ans. 

    Count subarrays with sum divisible by K in an array.

    • Iterate through the array and keep track of the running sum modulo K.

    • Use a hashmap to store the frequency of remainders.

    • For each prefix sum, check how many previous prefix sums have the same remainder.

    • Return the total count of subarrays with sum divisible by K.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This round was with the USA team, the panel consisted of 2 members. It took place at around 9 PM IST. The interviewer's focus was on approach.

  • Q1. 

    Sort an Array in Wave Form

    You are given an unsorted array ARR. Your task is to sort it so that it forms a wave-like array.

    Input:

    The first line contains an integer 'T', the number of test cases.
    For ea...
  • Ans. 

    Sort an array in a wave-like pattern where each element is greater than or equal to its adjacent elements.

    • Iterate through the array and swap elements at even indices with their adjacent odd indices to form a wave pattern.

    • There can be multiple valid wave arrays, so any valid wave array is acceptable.

    • Ensure the first element is greater than or equal to the second element to start the wave pattern.

  • Answered by AI
  • Q2. 

    Convert a Number to Words

    Given an integer number num, your task is to convert 'num' into its corresponding word representation.

    Input:

    The first line of input contains an integer ‘T’ denoting the number o...
  • Ans. 

    Convert a given integer number into its corresponding word representation.

    • Implement a function that takes an integer as input and returns the word representation of that number.

    • Break down the number into its individual digits and convert each digit into its word form.

    • Handle special cases like numbers between 10 and 19, and multiples of 10.

    • Combine the word forms of individual digits to form the final word representation

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

It was a managerial round. The position of the person taking the interview was of a technical architect. As was informed by the recruiter, previously he was a technical architect at Amazon.

  • Q1. How does Facebook store comments in its database?
  • Ans. 

    Facebook stores comments in its database using a combination of relational and non-relational databases.

    • Comments are typically stored in a relational database like MySQL for structured data storage.

    • For scalability and performance, Facebook may also use a NoSQL database like Cassandra or HBase for storing comments in a denormalized format.

    • Metadata related to comments such as likes, timestamps, and user information may b...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in NoidaEligibility criteriaShortlisting was done on the basis of coding test.Clearwater Analytics interview preparation:Topics to prepare for the interview - Data Structures, Algorithm Design, DBMS, Object Oriented Design, Machine LearningTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice the most frequent and most common questions DSA questions asked in companies like Amazon, Microsoft.
Tip 2 : Focus on solving the questions on your own as much as you can. 
Tip 3 : Don't waste your time on the number of questions while compromising quality.
Tip 4 : Do mock interviews with your friend if it's been a long since you have given the interview.
Tip 5 : For virtual interviews, always have a backup of data(you may use mobile data if Wi-Fi goes out). While during an interview try to maintain eye contact every now and then.
Tip 6 : Keep your resume short to 1 page and have far/good knowledge of the tech stack you have mentioned

Application resume tips for other job seekers

Tip 1 : Keep it short to 1 page
Tip 2 : Prepare it well.
Tip 3 : Focus more on the problem and the solution. Rather than tools used to solve the problem

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Some database questions,some java questions .

Round 2 - Technical 

(3 Questions)

  • Q1. What is the difference between javascript and jQuery.
  • Ans. 

    JavaScript is a programming language used for web development, while jQuery is a library built with JavaScript to simplify HTML document traversal and manipulation.

    • JavaScript is a programming language, while jQuery is a library written in JavaScript.

    • JavaScript can be used for a wide range of tasks, while jQuery is mainly used for DOM manipulation and event handling.

    • JavaScript is a core technology for web development, w...

  • Answered by AI
  • Q2. Define different types of join
  • Ans. 

    Different types of joins are used in SQL to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.

    • Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.

    • Full ...

  • Answered by AI
  • Q3. Define multithreading concept and exception handling.
  • Ans. 

    Multithreading allows multiple threads to run concurrently, while exception handling deals with errors in a program.

    • Multithreading involves running multiple threads simultaneously to improve performance and responsiveness.

    • Threads share the same memory space but have their own program counter and registers.

    • Exception handling is a mechanism to handle errors or exceptional situations in a program.

    • It helps prevent the prog...

  • Answered by AI

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
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Information about yourself
  • Ans. 

    I am a highly motivated and detail-oriented analyst with strong problem-solving skills.

    • Bachelor's degree in Business Analytics

    • Proficient in data analysis tools such as Excel and SQL

    • Experience in conducting market research and competitor analysis

    • Strong analytical and critical thinking abilities

    • Excellent communication and presentation skills

    • Ability to work independently and in a team

  • Answered by AI
  • Q2. Information about yourself.
  • Ans. 

    I am a highly skilled Analyst with expertise in data analysis and problem-solving.

    • Proficient in statistical analysis and data visualization tools such as Excel, Tableau, and Python

    • Strong analytical skills with the ability to interpret complex data sets and identify trends

    • Experience in conducting market research and competitor analysis

    • Excellent communication and presentation skills

    • Proven track record of delivering actio

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the interview
There might be multiple rounds.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops Inheritance and Incapsulation

Gmoney Pvt. Ltd. Interview FAQs

How many rounds are there in Gmoney Pvt. Ltd. interview?
Gmoney Pvt. Ltd. interview process usually has 1-2 rounds. The most common rounds in the Gmoney Pvt. Ltd. interview process are HR, One-on-one Round and Resume Shortlist.
How to prepare for Gmoney Pvt. Ltd. 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 Gmoney Pvt. Ltd.. The most common topics and skills that interviewers at Gmoney Pvt. Ltd. expect are Sales, Business Development, Relationship Management, Business Tie Ups and Field Sales.
What are the top questions asked in Gmoney Pvt. Ltd. interview?

Some of the top questions asked at the Gmoney Pvt. Ltd. interview -

  1. What do you know about GMo...read more
  2. Loan and Area knowle...read more

Tell us how to improve this page.

Gmoney Pvt. Ltd. Interview Process

based on 8 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
2.6
 • 50 Interviews
Shaadi.com Interview Questions
3.4
 • 28 Interviews
HealthKart Interview Questions
4.0
 • 26 Interviews
Tokopedia Interview Questions
4.1
 • 25 Interviews
Meritto Interview Questions
3.6
 • 22 Interviews
JUSPAY Interview Questions
3.1
 • 21 Interviews
Droom Interview Questions
3.8
 • 19 Interviews
AstroTalk Interview Questions
3.4
 • 19 Interviews
View all

Gmoney Pvt. Ltd. Reviews and Ratings

based on 89 reviews

3.7/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.6

Salary

3.1

Job security

3.5

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 89 Reviews and Ratings
Relationship Manager
31 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Territory Sales Manager
16 salaries
unlock blur

₹3 L/yr - ₹4.8 L/yr

Assistant Manager
8 salaries
unlock blur

₹3 L/yr - ₹5.4 L/yr

Senior Relationship Manager
6 salaries
unlock blur

₹3.7 L/yr - ₹6.5 L/yr

Sales Manager
6 salaries
unlock blur

₹2.8 L/yr - ₹4.7 L/yr

Explore more salaries
Compare Gmoney Pvt. Ltd. with

MagicPin

2.6
Compare

HealthKart

3.9
Compare

Awign Enterprises

3.9
Compare

Nestaway

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