Upload Button Icon Add office photos

Filter interviews by

Efunds International Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Jul 2023. There were 4 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 

Aptitude contain 40questions in 20mins

Round 3 - Technical 

(2 Questions)

  • Q1. Screening call 3 to 4 technical question
  • Q2. What do u know about money laundering, kyc, mulling
Round 4 - Technical 

(3 Questions)

  • Q1. 45mins of technical questions
  • Q2. About previous experience
  • Q3. How do you find the transaction is suspicious. If there is only one transaction
  • Ans. 

    Suspicious transactions can be identified through various factors such as unusual amount, frequency, location, or behavior.

    • Look for transactions that are significantly larger or smaller than usual for the customer

    • Check for transactions that are out of the ordinary in terms of frequency or timing

    • Consider transactions from high-risk locations or countries

    • Review transactions that deviate from the customer's typical spendi...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Mar 2023. There were 5 interview rounds.

Round 1 - Coding Test 

3 coding questions based on Tree and kind of similar to each other. Based on dijkstra algo.

Round 2 - Coding Test 

One question that was a bit lengthy, with name 'Tree of Space' you can get it from internet.

Round 3 - Case Study 

I have asked to improved my code from previous round and explain it and then they ask improve your code if if the inputs are in the form of multiple thread.

Round 4 - Technical 

(1 Question)

  • Q1. I have to some tree questions like height and one question from leetcode.
Round 5 - Cultural round 

(1 Question)

  • Q1. Some basic questions what you want what are your goals

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do some competitive coding and learn ds and algo.

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

Interview Questionnaire 

3 Questions

  • Q1. U know gold appraisal
  • Ans. 

    Gold appraisal is the process of determining the value of gold based on its purity and weight.

    • Gold appraisal involves testing the purity of the gold using various methods such as acid testing, X-ray fluorescence, and fire assay.

    • The weight of the gold is also taken into consideration when appraising its value.

    • The current market value of gold is also a factor in determining its appraisal value.

    • Appraisers may use differen...

  • Answered by AI
  • Q2. How many year experience
  • Q3. Where did u stay in bangalore

Interview Preparation Tips

Interview preparation tips for other job seekers - Good exelent work no target good industry

I applied via Referral and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. There were asked about the company and basic knowledge about the company?
  • Ans. I started giving them info about the company. Razorpay is a company which helps in money management for online business and by providing clean and hassel free platform. It is a fast affordable and secured way of sending and receiving online payment. Which is highly helpful for merchant, E-commerce and other company.
  • Answered Anonymously
  • Q2. And they asked about the basic info of KYC and AML?
  • Ans. AML and KYC is interlinked process. KYC is a path of Due Diligence process. Accurate info about the customer. By perform will be aware of any unusual activities. During KYC process it includes DOB, Name, Photo ID of the customer should be recoverd and verified. When you need to established an organisation or where an individual act on behalf of other person. We need to identify the beneficial owner. AML : Ant...
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - We need to be bold at the time of interview. We want speak up boldly in front them. Your answers should be short and sweet. Accept as is and don’t manipulate any answers. Ask for the feedback at the end of interview.

I applied via Naukri.com and was interviewed before Dec 2018. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Field observation about customers business related questions ex(how income arrive for tea shop) like that?
  • Q2. How to Risk finding at field?
  • Ans. 

    To assess risk in the field, credit officers can use various methods such as conducting on-site visits, analyzing financial statements, and evaluating market conditions.

    • Conduct on-site visits to assess the borrower's business operations and evaluate the quality of assets.

    • Analyze financial statements to understand the borrower's financial health, debt levels, and repayment capacity.

    • Evaluate market conditions and industr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are ready to work for all type of work, go for it, like operation collection support.

If your branch sales not performed means your promotion, bonus & increment will be questionable????
So choose branch which is do good numbers, you can grow together with your branch.

I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What are different exceptions?
  • Ans. 

    Exceptions are errors that occur during program execution and can be handled using try-catch blocks.

    • Checked exceptions: must be handled or declared in the method signature

    • Unchecked exceptions: occur at runtime and do not need to be declared

    • Error: serious problems that cannot be handled, such as OutOfMemoryError

    • Examples: NullPointerException, ArrayIndexOutOfBoundsException

  • Answered by AI
  • Q2. How to handle exceptions?
  • Ans. 

    Exceptions should be handled gracefully to prevent application crashes.

    • Use try-catch blocks to catch exceptions.

    • Handle exceptions at the appropriate level of abstraction.

    • Log exceptions to aid in debugging.

    • Provide meaningful error messages to the user.

    • Avoid catching generic exceptions.

    • Use finally blocks to release resources.

    • Consider using custom exceptions for specific error conditions.

  • Answered by AI
  • Q3. How to create custom List which is read-only?
  • Ans. 

    To create a custom read-only list, use the ReadOnlyCollection class in C#.

    • Create a List object with the desired elements.

    • Use the AsReadOnly() method to create a read-only wrapper around the list.

    • Use the ReadOnlyCollection class to create a truly read-only list.

    • Example: List myList = new List{"apple", "banana", "orange"};

    • Example: var readOnlyList = myList.AsReadOnly();

    • Example: var trulyReadOnlyList = new ReadOnlyCollect

  • Answered by AI
  • Q4. What are different collections?
  • Ans. 

    Collections are data structures that store and manipulate groups of related objects.

    • Collections are used to store and manipulate groups of related objects

    • They can be classified into three main categories: Lists, Sets, and Maps

    • Lists maintain the order of elements and allow duplicates (e.g. ArrayList, LinkedList)

    • Sets do not allow duplicates and do not maintain order (e.g. HashSet, TreeSet)

    • Maps store key-value pairs and d...

  • Answered by AI
  • Q5. Write code for binary search
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • The array must be sorted before applying binary search

    • Compare the target value with the middle element of the array

    • If the target value is smaller, search the left half of the array

    • If the target value is larger, search the right half of the array

    • Repeat until the target value is found or the search space is exhausted

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java , Collections , Exception Handing , searching and sorting code,scenario based questions.
Be strong in your basics

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Application security questions.
  • Q2. Explain spring security,oauth2 ,jwt,saml and tls level security
  • Ans. 

    Spring Security is a framework that provides authentication, authorization, and other security features for Java applications.

    • OAuth2 is an authorization framework that allows third-party applications to access a user's resources without sharing their credentials.

    • JWT (JSON Web Token) is a compact, URL-safe means of representing claims to be transferred between two parties.

    • SAML (Security Assertion Markup Language) is an ...

  • Answered by AI
  • Q3. Other way you can protect your application or systems

Skills evaluated in this interview

Professional Conversion Interview Questions & Answers

Fiserv user image Anonymous

posted on 18 Mar 2021

I applied via Recruitment Consultant and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Basic of ITIL 2. Incident management, change management, problem management with example 3. Request fulfillment
  • Q2. 4. Difference between OLA and SLA 5. Difference between Event and Incident 6. What is escalation matrix 7. Situational base questions 8. Strength and weakness
  • Q3. 9. Tell me something about your career
  • Q4. 10. Experience and challenges you faced 11. Why should I hire you. Three examples

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was a technical but, not very hard you can say. Interviewer wanted to test my knowledge as per my experience. Be yourself, make sure you are able to answer questions, based on mentioned information in your CV. All questions are related to my experience and related to my resume.

*Always explain the definition of particular question with example and it will affect more compare to normal.

I applied via Naukri.com and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell about yourself
  • Ans. I tell about me my family and my education qualification.
  • Answered Anonymously
  • Q2. Pharmacy related many questions
  • Q3. Experience in your field
  • Q4. Your salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - You have maximum knowledge in your field.
Speak in English better.

CRO Interview Questions & Answers

Angel One user image SANTANU SYAM

posted on 11 Oct 2020

Interview Questionnaire 

5 Questions

  • Q1. Ability to manage change
  • Ans. 

    I have a proven track record of successfully managing change in various organizations.

    • I am adaptable and flexible in my approach to change

    • I communicate effectively with all stakeholders to ensure a smooth transition

    • I am proactive in identifying potential issues and developing contingency plans

    • I am comfortable with ambiguity and can navigate through uncertainty

    • Example: Successfully led a team through a major restructuri...

  • Answered by AI
  • Q2. Ability to forget and unlearn
  • Ans. 

    Ability to forget and unlearn is crucial for personal growth and development.

    • Forgetting and unlearning old habits and beliefs can help in adopting new and better ones.

    • It requires conscious effort and practice to forget and unlearn things.

    • Examples include forgetting past mistakes and moving on, unlearning harmful biases and prejudices, and letting go of negative emotions.

    • Forgetting and unlearning can be difficult but it...

  • Answered by AI
  • Q3. Reason for joining the current company and reason for leaving the past
  • Q4. One thing you want to change with your last employer
  • Q5. One thing you want to forget with your last employer

Tell us how to improve this page.

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
FIS Interview Questions
3.9
 • 470 Interviews
PhonePe Interview Questions
4.0
 • 297 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
HighRadius Interview Questions
2.9
 • 177 Interviews
Fiserv Interview Questions
3.2
 • 166 Interviews
Razorpay Interview Questions
3.6
 • 151 Interviews
Visa Interview Questions
3.6
 • 135 Interviews
MasterCard Interview Questions
4.0
 • 130 Interviews
View all

Efunds International Reviews and Ratings

based on 10 reviews

5.0/5

Rating in categories

4.2

Skill development

4.6

Work-Life balance

4.2

Salary & Benefits

3.8

Job Security

4.2

Company culture

4.2

Promotions/Appraisal

4.2

Work Satisfaction

Explore 10 Reviews and Ratings
Team Member
5 salaries
unlock blur

₹1.3 L/yr - ₹2 L/yr

Software Engineer
3 salaries
unlock blur

₹3.5 L/yr - ₹7.8 L/yr

Explore more salaries
Compare Efunds International with

Paytm

3.3
Compare

FIS

3.9
Compare

Fiserv

3.2
Compare

PhonePe

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview