Upload Button Icon Add office photos

Filter interviews by

Raghunandan Money Interview Questions and Answers

Updated 11 Dec 2023

Raghunandan Money Interview Experiences

Popular Designations

4 interviews found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
Not Selected

I appeared for an interview in Nov 2023.

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. Pehle kaha Kiya job kis post p thi
  • Ans. Abhushan diamond and gold pvt Ltd Post- cashier
  • Answered Anonymously
  • Q2. Kyo chora waha se
  • Q3. Bad behaviour aur words k khayal na rkhna ki kisse ham kese bat kr rhe h

Interview Preparation Tips

Interview preparation tips for other job seekers - Next time se Job p rkhne se pehle hi documents pure le lijiyega taki Jo mere sath hua vo kisi aur k sath na ho 2month k bad aap mujhse meri degree mang rhe h mene bolaa apko ni hai mere pass to job se usi din nikal Diya aur salary bhi nahi di ye konsa tarika tha aap mujhe pehle din hi bta dete ki bina degree job ni hogi to m pehle hi mna kr deti mgr ye tarika bilkul galat tha aur salary na dene k to koi reason hi samjh nahi aa rha hai

Back Office Computer Operator Interview Questions asked at other Companies

Q1. What is between confidence and over confidence?
View answer (2)

HR Manager Interview Questions & Answers

user image Anonymous

posted on 27 Jul 2021

I applied via LinkedIn and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Technicals & personality based questions
  • Q2. How will you negotiate with candidates on salary?
  • Q3. What factors will help you in negotiation?
  • Ans. 

    Factors that help in negotiation include preparation, active listening, flexibility, and understanding the other party's needs.

    • Preparation: Research the other party and their needs before the negotiation.

    • Active listening: Pay attention to the other party's concerns and needs.

    • Flexibility: Be willing to compromise and find creative solutions.

    • Understanding the other party's needs: Put yourself in their shoes and try to se

  • Answered by AI
  • Q4. Payroll

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and speak to the point
Your experience does play a major role! Raghunandan money is a developing company hence so much to learn from here.

HR Manager Interview Questions asked at other Companies

Q1. Can you explain the meaning of performance Management as stated in your CV
View answer (5)

Arbitrager Interview Questions & Answers

user image Anonymous

posted on 27 May 2022

I applied via Walk-in and was interviewed in Nov 2021. 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 - Aptitude Test 

They are just ask you about some calculations and some silly questions most probably 95% all participants were clear it

Interview Preparation Tips

Interview preparation tips for other job seekers - Bhot easy chije phuchte hai calculations phuchte hai or kuch ese hi chhote chhote question tumhara naam papa k baare me kisk reference se aaye ho nothing else

Dealer Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2021

Interview Questionnaire 

1 Question

  • Q1. How to handle work load if you're still frustrated.
  • Ans. 

    Prioritize tasks, take breaks, communicate with team, seek support if needed.

    • Make a to-do list and prioritize tasks based on urgency and importance.

    • Take short breaks to refresh your mind and avoid burnout.

    • Communicate with your team and delegate tasks if possible.

    • Seek support from colleagues or a supervisor if workload is overwhelming.

    • Identify the root cause of frustration and address it proactively.

    • Practice stress-redu

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm.

Dealer Interview Questions asked at other Companies

Q1. How to handle work load if you're still frustrated.
View answer (1)

Raghunandan Money interview questions for popular designations

 Arbitrager

 (1)

 HR Manager

 (1)

 Back Office Computer Operator

 (1)

 Dealer

 (1)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

I applied via Referral and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How can you understand the supply of restaurant in a particular area of a city ?
  • Ans. 

    To understand the supply of restaurants in a particular area of a city, we can use various methods.

    • Collect data from online directories like Yelp, Zomato, etc.

    • Conduct surveys to gather information about the number of restaurants in the area.

    • Analyze the population density and demographics of the area to estimate the demand for restaurants.

    • Check the number of restaurant permits issued by the local government.

    • Use GIS mapp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand any city's demographics for instance. Take most busy road and assume that 70% supply will be on food -tech (MArket Standard). Open Sw / Zo and see the supply available in that area in peak time. There can be more than one way to solve for these question

I applied via Naukri.com and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell about yourself
  • Q2. What is your salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview wa easy and can crack it

I applied via Naukri.com and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Work experience
  • Q2. R u comfertable traveling
  • Ans. 

    Yes, I am comfortable traveling for work.

    • I have experience traveling for work in my previous roles.

    • I am adaptable and enjoy exploring new places.

    • I am willing to travel for client meetings and conferences.

    • I understand the importance of face-to-face interactions in sales.

    • I am organized and can handle the logistics of travel efficiently.

  • Answered by AI
  • Q3. What is your study status
  • Q4. Graduate
  • Q5. Can u join immediatly
  • Q6. Will you able to sell product by showing them on thier phone screen on the app
  • Q7. This is something new,but India is going through digitalisation,so ofcourse that wouldnt be that problem.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good,i got selected,after two days i got a cl bck,and on 3 days i did my joining procedure

I applied via Referral and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Group Discussion 

National head , RSM with ASM

Round 2 - HR 

(1 Question)

  • Q1. Simple question asked about my previous company
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiable by hr side

Interview Preparation Tips

Interview preparation tips for other job seekers - till date i have not any call . I want to get a chance to work in FMCG

Raghunandan Money Interview FAQs

How many rounds are there in Raghunandan Money interview?
Raghunandan Money interview process usually has 2 rounds. The most common rounds in the Raghunandan Money interview process are Resume Shortlist, Aptitude Test and HR.
What are the top questions asked in Raghunandan Money interview?

Some of the top questions asked at the Raghunandan Money interview -

  1. How to handle work load if you're still frustrat...read more
  2. What factors will help you in negotiati...read more
  3. Bad behaviour aur words k khayal na rkhna ki kisse ham kese bat kr rh...read more

Tell us how to improve this page.

Raghunandan Money Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 434 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
Meesho Interview Questions
3.7
 • 333 Interviews
Myntra Interview Questions
4.0
 • 217 Interviews
Blinkit Interview Questions
3.7
 • 189 Interviews
BlackBuck Interview Questions
3.8
 • 180 Interviews
FirstCry Interview Questions
3.6
 • 172 Interviews
Spinny Interview Questions
3.7
 • 171 Interviews
Tata 1mg Interview Questions
3.6
 • 151 Interviews
Digit Insurance Interview Questions
3.9
 • 146 Interviews
View all

Raghunandan Money Reviews and Ratings

based on 38 reviews

3.4/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.0

Salary

3.2

Job security

3.0

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 38 Reviews and Ratings
Financial Advisor
10 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Software Developer
8 salaries
unlock blur

₹5 L/yr - ₹6.3 L/yr

Arbitrager
8 salaries
unlock blur

₹1.5 L/yr - ₹2.4 L/yr

Executive Dealer
5 salaries
unlock blur

₹1.8 L/yr - ₹2.2 L/yr

Compliance Executive
5 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Explore more salaries
Compare Raghunandan Money with

Udaan

3.9
Compare

Swiggy

3.8
Compare

BlackBuck

3.8
Compare

Blinkit

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