Upload Button Icon Add office photos

Filter interviews by

MERCURY INSURANCE BROKERS Interview Questions and Answers

Updated 2 Apr 2024

MERCURY INSURANCE BROKERS Interview Experiences

1 interview found

TSO Interview Questions & Answers

user image Arpita Majumder

posted on 8 Jul 2021

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2022. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Tell me about yourself
  • Ans. You have to describe about yourself
  • Answered by Arpita Majumder
  • Q2. Why should I hire you
  • Q3. Tell as per your question
  • Q4. What do you know about life insurance
  • Ans. 

    Life insurance is a financial product that provides a lump sum payment to beneficiaries upon the insured's death.

    • Life insurance provides financial protection for loved ones in the event of the insured's death

    • There are different types of life insurance policies such as term life, whole life, and universal life

    • Premiums are paid by the policyholder to keep the policy active

    • The death benefit is typically tax-free for the b

  • Answered by AI
  • Q5. Tell as per you know

TSO Interview Questions asked at other Companies

Q1. Calculation (Suppose Nsa 100 ml MRP 40 And Scheme Per ltr 14 Rupees and Retail Margin 10 % and Additional Discount 4 % Tell Retail landing
View answer (1)

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(14 Questions)

  • Q1. Queries on joins using inner join, left join, right join, outer join
  • Q2. What are the definitions of case and decode, what are the differences between them, and can you explain the logic for each?
  • Ans. 

    Case and decode are conditional expressions in PL/SQL used for data manipulation.

    • CASE is used for conditional logic in SQL statements, while DECODE is used for conditional logic in SELECT statements.

    • CASE is more flexible and can handle multiple conditions, while DECODE is limited to one condition.

    • CASE can be used in both SQL and PL/SQL, while DECODE is specific to SQL.

    • Example of CASE: SELECT CASE WHEN condition1 THEN r...

  • Answered by AI
  • Q3. What are the primary key and foreign key in database design, and can you provide examples of each?
  • Ans. 

    Primary key uniquely identifies each record in a table, while foreign key establishes a link between two tables.

    • Primary key ensures uniqueness and cannot have null values

    • Foreign key establishes a relationship between tables based on the primary key of another table

    • Example of primary key: EmployeeID in an Employee table

    • Example of foreign key: DepartmentID in an Employee table linking to DepartmentID in a Department tabl

  • Answered by AI
  • Q4. What are the differences between Rank and Dense Rank in SQL?
  • Ans. 

    Rank assigns unique ranks to each distinct row, while Dense Rank assigns consecutive ranks without gaps.

    • Rank may have gaps in the ranking sequence, while Dense Rank does not.

    • Rank assigns the same rank to rows with the same values, while Dense Rank assigns different ranks.

    • Rank function is non-consecutive, while Dense Rank function is consecutive.

  • Answered by AI
  • Q5. What is the difference between procedures and functions?
  • Ans. 

    Procedures are used to perform an action, while functions return a value.

    • Procedures do not return a value, while functions do.

    • Functions can be called from SQL queries, while procedures cannot.

    • Functions must return a value, while procedures do not necessarily have to.

  • Answered by AI
  • Q6. Is it possible to use a package body without a package specification?
  • Ans. 

    No, a package body cannot be used without a package specification.

    • A package body must always be associated with a package specification.

    • The package specification defines the public interface of the package, while the package body contains the implementation details.

    • Attempting to use a package body without a corresponding package specification will result in compilation errors.

  • Answered by AI
  • Q7. What is a SQL query that can be used to find duplicate values in a database?
  • Ans. 

    Use a SQL query with GROUP BY and HAVING clause to find duplicate values in a database.

    • Use GROUP BY clause to group the values that are duplicated.

    • Use HAVING clause to filter out the groups that have more than one occurrence.

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1;

  • Answered by AI
  • Q8. Queries using group by and having clause
  • Ans. 

    Group by and having clause are used together to filter groups based on specified conditions.

    • Group by clause is used to group rows that have the same values into summary rows.

    • Having clause is used to filter groups based on specified conditions.

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 5000;

  • Answered by AI
  • Q9. What are the definitions of the Substr and Instr functions?
  • Ans. 

    Substr function extracts a substring from a string, while Instr function returns the position of a substring within a string.

    • Substr function syntax: SUBSTR(string, start_position, length)

    • Example: SUBSTR('Hello World', 7, 5) will return 'World'

    • Instr function syntax: INSTR(string, substring)

    • Example: INSTR('Hello World', 'World') will return 7

  • Answered by AI
  • Q10. What is the process for writing a SQL query that includes a subquery?
  • Ans. 

    Writing a SQL query with a subquery involves nesting one query inside another to retrieve specific data.

    • Start by writing the main query that will retrieve the primary data

    • Identify the criteria for the subquery to filter the results

    • Enclose the subquery within parentheses and use it in the WHERE or FROM clause of the main query

    • Ensure that the subquery returns a single value or a single column result

  • Answered by AI
  • Q11. What is the difference between char, varchar, and varchar2 data types?
  • Ans. 

    Char is fixed length, varchar is variable length with max 4000 bytes, varchar2 is variable length with max 32767 bytes.

    • Char is fixed length and always right-padded with spaces, while varchar and varchar2 are variable length.

    • Varchar can store up to 4000 bytes of data, while varchar2 can store up to 32767 bytes.

    • Char is less efficient in terms of storage compared to varchar and varchar2.

  • Answered by AI
  • Q12. Queries using Trunc and round
  • Q13. Is it possible to combine two tables with differing data and columns without utilizing joins?
  • Ans. 

    No, it is not possible to combine two tables with differing data and columns without utilizing joins.

    • Joins are necessary to combine tables based on a common column or key.

    • Different data and columns require a join to match and merge the data properly.

    • Examples of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • Answered by AI
  • Q14. Is it possible to update data in a view?
  • Ans. 

    Yes, it is possible to update data in a view using INSTEAD OF triggers.

    • Views are virtual tables that display data from one or more tables.

    • By using INSTEAD OF triggers, you can update data in a view by specifying the logic to handle the update operation.

    • The trigger intercepts the update operation on the view and executes the specified logic to update the underlying tables.

    • For example, you can create an INSTEAD OF trigge...

  • Answered by AI
Round 2 - Behavioral 

(6 Questions)

  • Q1. Can you describe yourself and provide details about your project, including the brief questions that were asked about it?
  • Q2. Why TCS?
  • Ans. 

    TCS is a global IT services company known for its innovative solutions and commitment to employee growth.

    • TCS has a strong reputation in the IT industry for delivering high-quality services.

    • TCS offers opportunities for professional growth and development through training programs and career advancement.

    • TCS has a diverse and inclusive work culture that values teamwork and collaboration.

  • Answered by AI
  • Q3. What is a dynamic cursor in database management?
  • Ans. 

    A dynamic cursor in database management allows for the execution of different SQL queries at runtime.

    • Dynamic cursors are used when the SQL query to be executed is not known until runtime.

    • They allow for flexibility in querying the database based on user input or other conditions.

    • Dynamic cursors can be used to handle varying result sets or conditions in a more efficient manner.

    • Example: Using a dynamic cursor to search fo...

  • Answered by AI
  • Q4. Did you perform performance tuning, and if so, what steps did you take?
  • Ans. 

    Yes, I have performed performance tuning by identifying bottlenecks and optimizing queries.

    • Identified slow queries using tools like SQL Trace, Explain Plan, and AWR reports.

    • Optimized queries by adding indexes, rewriting SQL statements, and reducing unnecessary data retrieval.

    • Tuned PL/SQL code by using bulk processing, minimizing context switches, and optimizing loops.

    • Utilized database features like partitioning and mat

  • Answered by AI
  • Q5. What is the definition of a package, and is it possible to use a package body without a package specification?
  • Ans. 

    A package in PL/SQL is a collection of related procedures, functions, variables, and other constructs.

    • A package consists of two parts: package specification and package body.

    • The package specification defines the public interface of the package, including declarations of variables, constants, cursors, procedures, and functions.

    • The package body contains the actual implementation of the procedures and functions declared i...

  • Answered by AI
  • Q6. I got more questions from my project related
Round 3 - HR 

(6 Questions)

  • Q1. What are your reasons for wanting to join TCS?
  • Ans. 

    I am excited about the opportunity to work with a global leader like TCS and contribute to innovative projects.

    • TCS is a renowned global company with a strong reputation in the IT industry

    • I am impressed by TCS's commitment to innovation and cutting-edge technology

    • I believe TCS offers great opportunities for professional growth and development

    • I am excited about the chance to work on diverse and challenging projects at TC

  • Answered by AI
  • Q2. What is your current salary package?
  • Ans. 

    I prefer to discuss my salary expectations based on the responsibilities and requirements of the position.

    • Focus on discussing salary expectations based on the job responsibilities and requirements.

    • Avoid disclosing specific current salary package.

    • Emphasize the importance of fair compensation based on market rates and skills.

    • Provide examples of successful projects or achievements that demonstrate your value.

    • Discuss oppor...

  • Answered by AI
  • Q3. What is your expected salary package?
  • Ans. 

    I am looking for a competitive salary package based on my experience and skills.

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

    • I have researched the average salary range for Plsql Developers in this location.

    • I am looking for a package that includes benefits such as healthcare, retirement plans, and professional development opportunities.

  • Answered by AI
  • Q4. Are you comfortable with shift work?
  • Ans. 

    Yes, I am comfortable with shift work and have experience working various shifts.

    • I have previous experience working different shifts in my current/previous roles.

    • I am flexible with my schedule and can easily adapt to changing shift patterns.

    • I understand the importance of shift work in ensuring 24/7 coverage for critical systems.

  • Answered by AI
  • Q5. Are you ok with any location
  • Ans. 

    Yes, I am open to any location for the Plsql Developer position.

    • I am willing to relocate for the right opportunity

    • I am open to working in different cities or countries

    • I am flexible with travel requirements for the job

  • Answered by AI
  • Q6. Holding any other offers in hand
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Sep 2021.

Round 1 - Technical 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What do you know about the Order to Cash (O2C) process?
Round 2 - One-on-one 

(1 Question)

  • Q1. How would you handle a situation in which you receive a difficult query or escalation from a customer?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

Social media ,Interests,Behaviour

Round 2 - One-on-one 

(3 Questions)

  • Q1. What Factors Would infrom ur approach to targeting the right people on social media in order to divice sales
  • Q2. What iş different between confidence and overconfidence
  • Q3. What is the mortgage loans?

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence and over confidence
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Near by location how to complete my target with bsm &team sales casa not b. R. O
Round 2 - HR 

(2 Questions)

  • Q1. If you hire me you will surely get a good sales officer. If you don't hire me then I will understand that I am lacking somewhere.
  • Q2. I know how to solve problems and I complete my target easily
Round 3 - HR 

(2 Questions)

  • Q1. If you support me then I can complete my target with perfection and in a simple manner.
  • Q2. If you select me then it will be a great thing for me
Round 4 - One-on-one 

(2 Questions)

  • Q1. I currently work in axis bank
  • Q2. Or main vaha of role hoon main ab on role hona chata hoon kyonkie mujhe yaha 10 mahine ho gai h

Interview Preparation Tips

Interview preparation tips for other job seekers - I will not say anything because I have come here to learn and I am a junior
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected
Round 1 - Group Discussion 

Bandhan Bank is a private sector bank in India that offers banking services to all socio-economic sections. The bank's mission is to provide financial solutions to all Indians in an inclusive and sustainable manner.
Features
Savings accounts: Offers free transactions like cash withdrawals at other bank ATMs, funds transfers, and NEFT transactions through the mobile app
Financial literacy: Aims to deepen financial inclusion in rural communities
Universal banking: Serves all socio-economic sections across the country
History
Founded by Chandra Shekhar Ghosh in 2015
Ghosh is a proponent of financial inclusion in India
The bank has been recognized as a scheduled bank by the RBI
Core values
Cost effective and simple
Respect for all
Exemplary governance
Accountability
Professionalism and discipline
Transparency and integrity
Effective team work and commitment
Deposit insurance
Depositors of Bandhan Bank are eligible for deposit insurance cover of up to Rs 5 lakhs in case the bank defaults

Round 2 - Group Discussion 

Bandhan Bank is a private sector bank in India that offers banking services to all socio-economic sections. The bank's mission is to provide financial solutions to all Indians in an inclusive and sustainable manner.
Features
Savings accounts: Offers free transactions like cash withdrawals at other bank ATMs, funds transfers, and NEFT transactions through the mobile app
Financial literacy: Aims to deepen financial inclusion in rural communities
Universal banking: Serves all socio-economic sections across the country
History
Founded by Chandra Shekhar Ghosh in 2015
Ghosh is a proponent of financial inclusion in India
The bank has been recognized as a scheduled bank by the RBI
Core values
Cost effective and simple
Respect for all
Exemplary governance
Accountability
Professionalism and discipline
Transparency and integrity
Effective team work and commitment
Deposit insurance
Depositors of Bandhan Bank are eligible for deposit insurance cover of up to Rs 5 lakhs in case the bank defaults

Round 3 - Assignment 

Bandhan Bank is a private sector bank in India that offers banking services to all socio-economic sections. The bank's mission is to provide financial solutions to all Indians in an inclusive and sustainable manner.
Features
Savings accounts: Offers free transactions like cash withdrawals at other bank ATMs, funds transfers, and NEFT transactions through the mobile app
Financial literacy: Aims to deepen financial inclusion in rural communities
Universal banking: Serves all socio-economic sections across the country
History
Founded by Chandra Shekhar Ghosh in 2015
Ghosh is a proponent of financial inclusion in India
The bank has been recognized as a scheduled bank by the RBI
Core values
Cost effective and simple
Respect for all
Exemplary governance
Accountability
Professionalism and discipline
Transparency and integrity
Effective team work and commitment
Deposit insurance
Depositors of Bandhan Bank are eligible for deposit insurance cover of up to Rs 5 lakhs in case the bank defaults
Show more

Round 4 - Assignment 

Bandhan Bank is a private sector bank in India that offers banking services to all socio-economic sections. The bank's mission is to provide financial solutions to all Indians in an inclusive and sustainable manner.
Features
Savings accounts: Offers free transactions like cash withdrawals at other bank ATMs, funds transfers, and NEFT transactions through the mobile app
Financial literacy: Aims to deepen financial inclusion in rural communities
Universal banking: Serves all socio-economic sections across the country
History
Founded by Chandra Shekhar Ghosh in 2015
Ghosh is a proponent of financial inclusion in India
The bank has been recognized as a scheduled bank by the RBI
Core values
Cost effective and simple
Respect for all
Exemplary governance
Accountability
Professionalism and discipline
Transparency and integrity
Effective team work and commitment
Deposit insurance
Depositors of Bandhan Bank are eligible for deposit insurance cover of up to Rs 5 lakhs in case the bank defaults

Round 5 - Assignment 

Bandhan Bank is a private sector bank in India that offers banking services to all socio-economic sections. The bank's mission is to provide financial solutions to all Indians in an inclusive and sustainable manner.
Features
Savings accounts: Offers free transactions like cash withdrawals at other bank ATMs, funds transfers, and NEFT transactions through the mobile app
Financial literacy: Aims to deepen financial inclusion in rural communities
Universal banking: Serves all socio-economic sections across the country
History
Founded by Chandra Shekhar Ghosh in 2015
Ghosh is a proponent of financial inclusion in India
The bank has been recognized as a scheduled bank by the RBI
Core values
Cost effective and simple
Respect for all
Exemplary governance
Accountability
Professionalism and discipline
Transparency and integrity
Effective team work and commitment
Deposit insurance
Depositors of Bandhan Bank are eligible for deposit insurance cover of up to Rs 5 lakhs in case the bank defaults

Interview Preparation Tips

Interview preparation tips for other job seekers - Bandhan Bank is a private sector bank in India that offers banking services to all socio-economic sections. The bank's mission is to provide financial solutions to all Indians in an inclusive and sustainable manner.
Features
Savings accounts: Offers free transactions like cash withdrawals at other bank ATMs, funds transfers, and NEFT transactions through the mobile app
Financial literacy: Aims to deepen financial inclusion in rural communities
Universal banking: Serves all socio-economic sections across the country
History
Founded by Chandra Shekhar Ghosh in 2015
Ghosh is a proponent of financial inclusion in India
The bank has been recognized as a scheduled bank by the RBI
Core values
Cost effective and simple
Respect for all
Exemplary governance
Accountability
Professionalism and discipline
Transparency and integrity
Effective team work and commitment
Deposit insurance
Depositors of Bandhan Bank are eligible for deposit insurance cover of up to Rs 5 lakhs in case the bank defaults
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Sep 2024.

Round 1 - Aptitude Test 

The personality Matters to them, professional approach. Prompt answers are accepted each time they ask questions. Your answer should be shot, but clear at the same time. Professional achievements would be Additional advantage. Describe about your professional achievements.

Round 2 - One-on-one 

(4 Questions)

  • Q1. About yourself Current job profile Challenges faced in current profile Biggest success on previous job Weakness and strength
  • Q2. Current job profile
  • Q3. Biggest success of previous job
  • Q4. Biggest challenges of previous job

Interview Preparation Tips

Interview preparation tips for other job seekers - Challenges face in current profile
Biggest success in previous job
Weakness and strength
Be very fluent and accurate about numbers of your previous performance
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - HR 

(2 Questions)

  • Q1. Can you provide a self-introduction that includes details about your studies, overall work experience, job roles and responsibilities, personal struggles, life goals, family background, and hobbies?
  • Q2. How do you manage your work-life balance while being the sole earner in your family, and what strategies do you use to handle your responsibilities?
Round 2 - Aptitude Test 

The test you will take will be related to the profile for which you are interviewing, such as sales or aptitude, meaning that it will assess your abilities and knowledge. It will evaluate your verbal language skills, reasoning capabilities, and overall eligibility. This test is designed to analyze your thought process, including how quickly you can solve the questions, as well as to measure your intelligence.

Round 3 - Assignment 

This test includes questions related to sales, such as how to create a pipeline, how to follow up with cold and warm leads, and how to shortlist leads. It also addresses customer handling, product pitching, and conditions for selling a product according to the customer’s needs, as well as how to highlight key points and features. Additionally, it discusses negotiation strategies, mathematical problems, questions related to English language passages, and techniques for solving math problems. Finally, it mentions that you will be given a paragraph or a task on which you are required to write about 400 to 600 words according to your understanding.

Interview Preparation Tips

Interview preparation tips for other job seekers - Whenever you go for an interview, your dressing should be formal, and you should have a smile on your face. Your gestures and posture should be the best, and maintaining good eye contact is essential. First, greet the interviewers before starting the interview process. Self-confidence is the most crucial aspect; you can interview at any large company if you believe in yourself, so don’t hesitate. Use one language, whether it's Hindi, English, or your regional language, and think carefully before answering any questions. Focus on your goal of achieving the job.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. About myself and my educational
  • Q2. Document verification and personal details
Round 2 - HR 

(1 Question)

  • Q1. Document verification and personal details
Round 3 - One-on-one 

(3 Questions)

  • Q1. Self induction and career
  • Q2. Any experience in the banking sector
  • Q3. Any experience to banking sector

Interview Preparation Tips

Interview preparation tips for other job seekers - To work very sincerely and improve your skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    Experienced technical writer with a background in software development and a passion for clear and concise communication.

    • Over 5 years of experience in technical writing for software products

    • Proficient in creating user guides, API documentation, and release notes

    • Strong background in software development, allowing for effective collaboration with engineers

    • Skilled in translating complex technical concepts into easy-to-und...

  • Answered by AI
  • Q2. What do you know about DITA XML, which tags have you used in your documents, what are keywords, and what is DITA mapping, have you ever created graphics or illustrations, types of DITA topics, benefits of ...
  • Ans. 

    DITA XML is a structured content standard used for creating technical documentation.

    • DITA XML is a structured content standard for technical documentation

    • Commonly used tags include <topic>, <title>, <body>, <section>

    • Keywords are used to categorize content for easy retrieval

    • DITA mapping is the process of linking topics together in a hierarchy

    • Graphics and illustrations can be created and included i...

  • Answered by AI
  • Q3. What do you know of Agile Methodology and Scrum?
  • Ans. 

    Agile Methodology and Scrum are popular project management frameworks used in software development.

    • Agile Methodology is a flexible approach to software development that emphasizes incremental delivery, collaboration, and continuous improvement.

    • Scrum is a specific Agile framework that divides work into sprints, with daily stand-up meetings and regular reviews.

    • Scrum roles include Product Owner, Scrum Master, and Developm...

  • Answered by AI
  • Q4. What do you do in case of conflict with SMEs, have you worked with any global audience, what kind of documents have you created, how do you estimate time needed for your document.
  • Ans. 

    In case of conflict with SMEs, I prioritize clear communication and collaboration. I have experience working with global audiences, creating various types of documents, and estimating time needed for each project.

    • In case of conflict with SMEs, I prioritize clear communication and collaboration to find a resolution that meets both our needs.

    • I have worked with global audiences by adapting my writing style to suit differe...

  • Answered by AI
  • Q5. How do you receive input, what are DDLC and SDLC, what style guides have you used for creating documents, how do you ensure accuracy in your document.
  • Ans. 

    I receive input through meetings and emails, DDLC is Document Development Life Cycle, SDLC is Software Development Life Cycle, I use APA and Chicago style guides, I ensure accuracy through thorough research and review.

    • Receive input through meetings with subject matter experts and stakeholders

    • DDLC (Document Development Life Cycle) is the process of creating, editing, and publishing documents

    • SDLC (Software Development Li...

  • Answered by AI
  • Q6. What is design thinking, have you ever communicated with developers, what do you do when you do not have enough information but the deadline is already near?
  • Ans. 

    Design thinking is a problem-solving approach that focuses on understanding the user's needs and creating innovative solutions.

    • Design thinking involves empathizing with users, defining the problem, ideating solutions, prototyping, and testing.

    • Yes, I have communicated with developers to understand technical aspects and constraints of the project.

    • When lacking information near a deadline, I prioritize the most critical as...

  • Answered by AI
  • Q7. Have you worked with any version control systems?
  • Ans. 

    Yes, I have experience working with version control systems.

    • I have used Git for version control in my previous roles.

    • I am familiar with branching, merging, and resolving conflicts in Git.

    • I have also worked with SVN (Subversion) in the past.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IBM Senior Technical Writer interview:
  • DITA XML
  • Agile Methodology
  • DDLC
  • SDLC
  • VCS

MERCURY INSURANCE BROKERS Interview FAQs

What are the top questions asked in MERCURY INSURANCE BROKERS interview?

Some of the top questions asked at the MERCURY INSURANCE BROKERS interview -

  1. What do you know about life insura...read more
  2. Tell as per your quest...read more
  3. Tell as per you k...read more

Tell us how to improve this page.

MERCURY INSURANCE BROKERS Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
Infosys BPM Interview Questions
3.6
 • 939 Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 641 Interviews
View all

MERCURY INSURANCE BROKERS Reviews and Ratings

based on 5 reviews

1.3/5

Rating in categories

1.2

Skill development

1.3

Work-life balance

1.2

Salary

1.2

Job security

1.2

Company culture

1.2

Promotions

1.2

Work satisfaction

Explore 5 Reviews and Ratings
Back Office Executive
3 salaries
unlock blur

₹1.5 L/yr - ₹3.5 L/yr

Explore more salaries
Compare MERCURY INSURANCE BROKERS with

TCS

3.7
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Genpact

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