Upload Button Icon Add office photos

Filter interviews by

Ebixcash World Money Management Trainee HR Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. They asked me one question.why select in this company.

I applied via Monster and was interviewed in Dec 2017. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They are asked question tell about yourself in general questions.

Interview Preparation Tips

General Tips: I attend in interview last candidate so just 5 minits faced HR interview.
Skills: Analytical Skills
Duration: 1-4 weeks

I was interviewed in Mar 2017.

Interview Questionnaire 

4 Questions

  • Q1. Tell us something about yourself.
  • Ans. 

    I am a detail-oriented business analyst with experience in data analysis and project management.

    • Experienced in data analysis and project management

    • Detail-oriented and analytical mindset

    • Strong communication and interpersonal skills

    • Proficient in various analytical tools such as Excel, SQL, and Tableau

  • Answered by AI
  • Q2. What do you about our company?
  • Ans. 

    I am not familiar with your company.

    • I have not had the opportunity to research your company yet.

    • I would appreciate it if you could provide me with more information about your company.

    • I am open to learning more about your company and its goals.

  • Answered by AI
  • Q3. Why should we hire you?
  • Ans. 

    I have the skills, experience, and passion to excel in this role and contribute to the success of the company.

    • I have a strong background in data analysis and problem-solving, which are essential skills for a business analyst.

    • I have experience working with various stakeholders, including clients, developers, and project managers, to ensure successful project delivery.

    • I am a quick learner and adaptable to new technologie...

  • Answered by AI
  • Q4. What are the marketing strategies according to you?
  • Ans. 

    Marketing strategies are plans and tactics implemented by businesses to promote their products or services and reach their target audience.

    • Identifying target audience and market segmentation

    • Creating a unique value proposition

    • Developing a marketing mix (product, price, place, promotion)

    • Utilizing digital marketing channels (social media, email marketing, SEO)

    • Implementing content marketing and storytelling

    • Building brand a...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The questions were very tough to complete.Highly based on technical questions.
Tips: Hard work is necessary to crack it.
Duration: 3 hours
Total Questions: 45

Round: HR Interview
Experience: It went on very smoothly and i was quite comfortable with the interviewer.
Tips: One just needs to answer all the questions asked by the interviewer in a proper manner or confident manner presenting valid points.

College Name: Kiit university

Data Analyst Interview Questions & Answers

PayPal user image AKASH KUMAR SINGH

posted on 2 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. For this round he gave me lot of problems and asked to develop optimal algorithm to solve that. Problems were mainly on trees and number sequences
  • Q2. In this round he mainly discussed my projects and asked me how these can be put to use in Paypal. He also asked some basic questions from ML
  • Q3. HR round was just for formality
  • Q4. Probability , question on calculating expected number of trials and puzzles

Interview Preparation Tips

Round: Test
Experience: The coding question was:
Given a binary string containing 0's and 1's. You can split the string such that each partition should be a exponential of 5 (1,5,25,625...). You were asked to return minimum number of partition for the given string such each partition is exponential of 5. If no such partition exists return -1.
Examples: '101101101' Ans: 3 (101, 101, 101)
'111' Ans: 3 (1,1,1)
10101 Ans: -1
Tips: For MCQ's prepare DSA, OS and Networking. For DSA you can refer to cormen
For Coding question practice on either geeksforgeeks or from any of the coding platforms like hackerrank
The shortlist was mainly dependent on coding question
Duration: 1 hour 30 minutes

Round: Puzzle Interview
Tips: Do lot of puzzles from heard on the street, -----/ , Try to search for more. It will be helpful in other interviews as well

Round: Technical Interview
Tips: Practice algorithm section from geeksforgeeks. There are lot of standard problems. The given questions were slightly modified version of standard problems

Round: Technical Interview
Tips: For this round you need to be well prepared with your projects and resume.

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Questions about projects
  • Q2. Why Paypal?
  • Ans. 

    Paypal is a leading online payment platform with a strong reputation and global presence.

    • Paypal is a well-established and trusted online payment platform used by millions of users worldwide.

    • It offers secure and convenient payment options for both individuals and businesses.

    • Paypal has a strong focus on innovation and technology, making it an exciting place to work for software engineers.

    • Working at Paypal provides opport...

  • Answered by AI
  • Q3. What does Paypal do?
  • Ans. 

    Paypal is a digital payment platform that allows individuals and businesses to make online transactions.

    • Paypal provides a secure way to send and receive money online.

    • It allows users to link their bank accounts, credit cards, or debit cards to their Paypal account.

    • Users can make payments to merchants or individuals using their Paypal balance or linked payment methods.

    • Paypal offers buyer and seller protection, dispute re...

  • Answered by AI
  • Q4. How do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Continuing to enhance my technical skills and knowledge through ongoing learning and certifications

    • Taking on more leadership responsibilities and mentoring junior team members

    • Contributing to the development of cutting-edge software solutions

    • Building strong relationships with colleagues and stakeholders to drive pr

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: One Programming and 15 multiple choice Questions.
Duration: 1 hour 30 minutes
Total Questions: 16

Round: Technical Interview
Experience: All details about projects you have written on resume. Some different implementation of some parts of your project.

Skills: Knowledge about Database Managements Systems, Problem Solving Skills
College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. Detecting loop in linked list
  • Ans. 

    Detecting loop in a linked list

    • Use two pointers, one moving one node at a time and the other moving two nodes at a time

    • If there is a loop, the two pointers will eventually meet

    • If any of the pointers reach the end of the list, there is no loop

  • Answered by AI
  • Q2. Write code for dfs
  • Ans. 

    DFS (Depth-First Search) is a graph traversal algorithm that explores as far as possible along each branch before backtracking.

    • DFS uses a stack to keep track of visited nodes and explore adjacent nodes.

    • It can be implemented recursively or iteratively.

    • DFS is useful for solving problems like finding connected components, detecting cycles, and solving mazes.

  • Answered by AI
  • Q3. How to find cycle in graph
  • Ans. 

    To find a cycle in a graph, use depth-first search (DFS) and keep track of visited nodes.

    • Implement DFS algorithm to traverse the graph

    • Maintain a visited array to keep track of visited nodes

    • If a visited node is encountered again during DFS, a cycle exists

  • Answered by AI
  • Q4. What is hashing and how will you implement?
  • Ans. 

    Hashing is a process of converting data into a fixed-size numerical value called a hash code.

    • Hashing is used to quickly retrieve data from large datasets.

    • It is commonly used in data structures like hash tables and hash maps.

    • Hash functions should be fast, deterministic, and produce unique hash codes for different inputs.

    • Examples of hash functions include MD5, SHA-1, and SHA-256.

  • Answered by AI
  • Q5. Questions related to to resume
  • Q6. No of pairs between 1 and N satisfy relation pow(a,3)+pow(b,3)=pow(c,3)+pow(d,3).a,b,c,d<=N
  • Ans. 

    The question asks for the number of pairs between 1 and N that satisfy a specific mathematical relation.

    • The relation is pow(a,3) + pow(b,3) = pow(c,3) + pow(d,3)

    • The values of a, b, c, and d should be less than or equal to N

    • Count the number of pairs that satisfy the relation

  • Answered by AI
  • Q7. -----.php?pid=514
  • Q8. Questions related to resume
  • Q9. Explain Merge sort
  • Ans. 

    Merge sort is a divide-and-conquer algorithm that recursively divides an array into two halves, sorts them, and then merges them.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

    • Repeat until the entire array is sorted

  • Answered by AI
  • Q10. Why do you want to join in paypal?
  • Ans. 

    I want to join PayPal because of its innovative technology, global impact, and strong company culture.

    • Innovative technology - PayPal is known for its cutting-edge technology and digital payment solutions.

    • Global impact - Working at PayPal would allow me to contribute to a company that has a worldwide reach and influence.

    • Strong company culture - I value a company that prioritizes diversity, inclusion, and employee well-b...

  • Answered by AI
  • Q11. Explain anything whatever you learned recently?
  • Ans. 

    I recently learned about the benefits of using Docker for containerization.

    • Docker allows for easy packaging and deployment of applications

    • It helps in creating consistent environments across different platforms

    • Docker containers are lightweight and efficient

    • Example: I used Docker to containerize a microservices architecture for a recent project

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: coding question related to palindrome portioning.MCQs related to cs fundamentals
Duration: 1 hour 30 minutes

Skills: General Coding And Problem Solving
College Name: IIT Madras

Skills evaluated in this interview

Software Developer Interview Questions & Answers

PayPal user image RAJIVTEJA NAGIPOGU

posted on 3 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Given an array of numbers find the subset of numbers that give zero sum.
  • Ans. 

    Find subset of numbers in array that sum up to zero.

    • Use a nested loop to iterate through all possible subsets.

    • Calculate the sum of each subset and check if it equals zero.

    • Store the subset if the sum is zero.

    • Optimize the solution by using a hash set to store the cumulative sum of elements.

  • Answered by AI
  • Q2. Explain how bfs works?
  • Ans. 

    BFS (Breadth-First Search) is a graph traversal algorithm that explores all the vertices of a graph in breadth-first order.

    • BFS starts at a given vertex and explores all its neighbors before moving to the next level of vertices.

    • It uses a queue data structure to keep track of the vertices to be visited.

    • BFS guarantees that it visits all the vertices of a connected graph.

    • It can be used to find the shortest path between two

  • Answered by AI
  • Q3. Discussion on the projects I have done.
  • Q4. Question on Linked List.
  • Q5. Project Discussion
  • Q6. Strengths and weaknesses. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a highly skilled software developer, leading a team and contributing to innovative projects.

    • Continuously improving my technical skills through learning and hands-on experience

    • Taking on leadership roles and mentoring junior developers

    • Contributing to the development of cutting-edge software solutions

    • Building strong relationships with clients and stakeholders

    • Staying updated with the latest indu...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.

Round: Technical + HR Interview
Experience: I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.

College Name: IIT Madras

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. 1hr long.
  • Q2. 1 Hr.
  • Q3. Chilled out. Salary compensation

Interview Preparation Tips

Round: Resume Shortlist
Experience: CGPA 6 Above shortlisted

Round: Technical Interview
Experience: DSA, Analytics, Business Knowledge

Round: Technical Interview
Experience: Project, DBMS, OOPS, DW, Probability, Puzzles

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: Aptitude questions were logical, not tough. For coding, one question, not basic but very logical.
Tips: for coding part try practicing on hackerrank.
Duration: 45+30 minutes
Total Questions: 20+1

Round: Technical Interview
Experience: Interviewer asked all about Linked list and Data structures and algorithm.
Tips: Atleast try learning some basic concepts of linked list, stacks, queues and binary tree.

General Tips: Interview was fair, without any partiality for girls/boys or B.Tech/Dual.
Skill Tips: Be confident and reply frankly. Never let them know that you are nervous.
Skills: Confidence
Duration: 2.5
College Name: IIT Madras
Funny Moments: "Lets go for a walk". HR interviewer will take you for a round to ask you HR questions.

Please prepare for two questions "Tell me something about you" and "Why PayPal, why not any other company".

Interview Preparation Tips

Round: Test
Experience: Test was consist of two sections
1.Quant
2.Aptitude
Tips: Since initial shortlisting was based on Test so focus on Quant and Aptitude
Duration: 40 minutes
Total Questions: 30

Round: Interview
Experience: Tested communication skill for the purpose of client interaction.

Round: Interview
Experience: Asked Questions relating to resume. the first part of the 2nd round was mostly on my intern,the profile of which matched with what they were looking for.Data mining ,Data analyst etc.they went in depth about my intern and asked every detail of how i proceeded in getting the final results. second part focussed on PAYPAL .
Tips: They didn't expect the candidate to know everything about PAYPAL but it is always good to know about the company as much as you can before attending the interview.

Round: Interview
Experience: They looked at the approach and tried to push us to the limits.
The most important factor is how you approach the problem and not if you end up with result then there was other question,they tested the approach even for that one.
Tips: Preparation on guesstimate and case studies will help you deal with question like that.

Skills: Communication skill, Problem solving skill
College Name: IIT MADRAS

Tell us how to improve this page.

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 300 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
HighRadius Interview Questions
2.9
 • 183 Interviews
Fiserv Interview Questions
3.0
 • 172 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
CapitalOne Interview Questions
3.7
 • 78 Interviews
Rupeek Interview Questions
3.7
 • 60 Interviews
Thomas Cook Interview Questions
3.7
 • 44 Interviews
View all
Executive
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ebixcash World Money with

Thomas Cook

3.7
Compare

Centrumdirect

3.9
Compare

Weizmann Forex

4.0
Compare

Paul Merchants

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