i
Empower Retirement
Filter interviews by
I applied via Walk-in and was interviewed in Jun 2024. There were 2 interview rounds.
Basic grammar test and written test
Provident Fund (PF) is a retirement savings scheme in India where both employees and employers contribute a portion of the employee's salary.
Employees contribute a percentage of their salary towards the Provident Fund.
Employers also contribute an equal amount to the employee's Provident Fund.
The accumulated amount in the Provident Fund can be withdrawn by the employee upon retirement or resignation.
The Provident Fund i...
US and Indian PF processes differ in eligibility criteria, contribution rates, withdrawal rules, and tax implications.
US PF is known as 401(k) while Indian PF is known as EPF
US PF contributions are typically made by both employer and employee, while Indian PF contributions are primarily made by the employer
US PF allows for loans and hardship withdrawals, while Indian PF has stricter withdrawal rules
US PF contributions ...
Top trending discussions
posted on 4 Feb 2022
I applied via Recruitment Consulltant and was interviewed before Feb 2021. There was 1 interview round.
Seeking new challenges and growth opportunities in a different organization.
Looking for a change to expand my skill set and knowledge.
Seeking a more challenging role that aligns with my career goals.
Wanting to work in a different industry to gain new experiences.
Desire to work in a company with a better work-life balance.
Seeking better compensation and benefits.
Wanting to work in a more supportive and collaborative tea
I expect a competitive salary based on my experience and skills.
I am looking for a salary that reflects my qualifications and the responsibilities of the role.
I have researched the average salary range for Customer Service Executives in this industry.
I am open to negotiation and would like to discuss the salary package further.
I believe that fair compensation is important for job satisfaction and motivation.
I worked as a Customer Service Executive at XYZ Company.
Handled customer inquiries and complaints via phone, email, and chat
Provided product information and resolved customer issues
Maintained accurate records of customer interactions and transactions
Collaborated with other departments to ensure customer satisfaction
Received positive feedback from customers for excellent service
Achieved monthly targets for customer sati
I have excellent communication skills, a strong customer focus, and a proven track record in delivering exceptional customer service.
I have a friendly and approachable demeanor, which helps me build rapport with customers.
I am a good listener and can empathize with customers' concerns and needs.
I am highly organized and can handle multiple tasks efficiently.
I have a problem-solving mindset and can think quickly on my f...
I am a dedicated and experienced Customer Service Executive with a strong background in providing exceptional customer support.
Over 5 years of experience in the customer service industry
Proficient in handling customer inquiries, complaints, and resolving issues
Skilled in building positive relationships with customers
Excellent communication and problem-solving skills
Ability to work well under pressure and in a fast-pace
posted on 10 May 2015
Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.
Multi tasking allows multiple tasks to run concurrently on a single processor.
Multi processing involves multiple processors running tasks simultaneously.
Multi programming allows multiple programs to be loaded into memory and executed concurrently.
Examples of multi tasking operating systems include Wi...
Memory allocation refers to the process of assigning memory to programs during runtime.
Stack allocation is done automatically and is limited in size.
Heap allocation is done manually and is larger in size.
Stack memory is used for local variables and function calls.
Heap memory is used for dynamic memory allocation.
Memory leaks can occur if heap memory is not properly managed.
Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.
Create two threads, one for printing even numbers and the other for printing odd numbers.
Use a shared variable to keep track of the current number to be printed.
Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.
Each thread should check if it is i...
Printing a matrix in spiral order
Start from the first element and print it
Move in a spiral order towards the center of the matrix
Repeat until all elements are printed
Thread class and Runnable Interface are used for multithreading in Java.
Thread class is a predefined class in Java that provides methods to create and control threads.
Runnable interface is used to define a task that can be executed by a thread.
Thread class implements Runnable interface.
Thread class provides more control over threads than Runnable interface.
Example: Thread t = new Thread(new MyRunnable()); t.start();
Exa...
Linked List is a dynamic data structure while ArrayList is a static data structure.
Linked List is best for frequent insertion and deletion operations.
ArrayList is best for frequent access operations.
Linked List uses more memory than ArrayList.
ArrayList is faster than Linked List for accessing elements.
Use Linked List when you need to frequently add or remove elements from the list.
Use ArrayList when you need to frequen
I am not interested in a career in investment banking.
I am more interested in a career in software development
I enjoy problem-solving and creating innovative solutions through coding
Investment banking does not align with my passion and skill set
I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.
J.P. Morgan has a strong reputation in the financial industry.
They have a global presence with offices in multiple countries.
The company offers various opportunities for career growth and development.
J.P. Morgan is known for its innovative technology solutions in the financial sector.
I am impressed by their ...
Yes, I have made a mistake in my previous project.
I underestimated the complexity of a task and ended up missing the deadline.
I failed to properly test a feature, resulting in a bug that affected user experience.
I accidentally deleted an important file without having a backup.
I misunderstood a requirement and implemented a feature incorrectly.
posted on 15 Jan 2020
I applied via Referral and was interviewed before Jan 2019. There were 4 interview rounds.
Our blue pen is the perfect tool for all your writing needs.
Our blue pen has a smooth ink flow that makes writing effortless.
The pen's comfortable grip ensures that you can write for hours without any discomfort.
The blue ink is vibrant and stands out on any paper, making your writing easy to read.
The pen is also refillable, making it an eco-friendly choice for those who care about the environment.
Our blue pen is perfec...
posted on 23 Jun 2022
I applied via Walk-in and was interviewed before Jun 2021. There were 3 interview rounds.
Aptitude tests will test your ability to perform tasks and react to situations at work.
Group discussion is a Comprehensive technique to judge the suitability of an individual and his appropriateness, and overall thoughts, feelings and behavior of and individual.
posted on 17 Jan 2021
I applied via Recruitment Consultant and was interviewed in Dec 2020. There was 1 interview round.
posted on 16 Dec 2021
I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 4 interview rounds.
posted on 2 Sep 2021
I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.
To sell an insurance policy to a customer, I would focus on understanding their needs, explaining the benefits of the policy, addressing any concerns, and providing personalized recommendations.
Listen attentively to the customer's needs and concerns
Explain the coverage and benefits of the insurance policy
Address any objections or concerns the customer may have
Provide personalized recommendations based on the customer's...
I appeared for an interview in Feb 2021.
Round duration - 120 minutes
Round difficulty - Medium
Round duration - 120 minutes
Round difficulty - Medium
You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...
Find all possible paths for a rat in a maze from source to destination.
Use backtracking to explore all possible paths in the maze.
Keep track of visited cells to avoid revisiting them.
Explore all possible directions ('U', 'D', 'L', 'R') from each cell.
Return the list of valid paths sorted in alphabetical order.
Determine if a given word 'W' is present in the sentence 'S' as a complete word. The word should not merely be a substring of another word.
The first line contains an in...
Check if a given word is present in a sentence as a complete word.
Split the sentence into words using spaces as delimiter.
Check if the given word matches any of the words in the sentence.
Ensure the word is not a substring of another word in the sentence.
Tip 1 : Knowledge of api
Tip 2 : Practice Data Structure based questions.
Tip 3 : Do at least 1 project.
Tip 1 : Keep it short.
Tip 2 : Do not mention participation certificates.
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Specialist
155
salaries
| ₹3 L/yr - ₹6.4 L/yr |
Senior Specialist
155
salaries
| ₹3.8 L/yr - ₹8.1 L/yr |
Software Developer
97
salaries
| ₹5.3 L/yr - ₹17.3 L/yr |
Assistant Manager
55
salaries
| ₹8.5 L/yr - ₹18.2 L/yr |
Process Specialist
44
salaries
| ₹3.2 L/yr - ₹7 L/yr |
Bajaj Finserv
Wells Fargo
JPMorgan Chase & Co.
Motilal Oswal Financial Services