Upload Button Icon Add office photos

Filter interviews by

Ebixcash World Money Medical Coding Specialist Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Depends on the role
  • Q2. Second round will be written test
  • Q3. Discussion with senior director
Round 2 - Aptitude Test 

Question depends on the Job description

Round 3 - HR 

(2 Questions)

  • Q1. Like and dislikes
  • Q2. Normal conversation
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Basic interview questions but applied there for the opening as per my past ex.
  • Q2. HR Interviewed me but she'd aligned me for the position of quality analyst. Even after when I've objected of my compatibility with the profile of QA. However she'd told she finds my profile perfect for the...
  • Q3. For the Gurugram or Noida location
Round 2 - One-on-one 

(1 Question)

  • Q1. On site 1st round interview basic questions.
Round 3 - Technical 

(1 Question)

  • Q1. Final interview panel bombarded me with the arcane interview questions unrelated to the work which I've done earlier in a half an hour long interview. However I was motivated for the learning but the panel...

I applied via Recruitment Consulltant and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Share details of your previous job.
Round 2 - One-on-one 

(1 Question)

  • Q1. More about previous experiences.
Round 3 - Technical 

(1 Question)

  • Q1. More about previous work experiences, all techinical

Interview Preparation Tips

Topics to prepare for HighRadius Senior Executive interview:
  • hard skills
  • job related skills
  • Excel
  • Presentation Skills
Interview preparation tips for other job seekers - Always ask for sometime before the first round of the interview.

Research about the company , its culture , products and practices. Be prepared before you have the first discussion with any manager or even if its with HR.

Keep it real and honest. Speak all you are capable of and if you don't know something admit it, as good as it is. Recruiters like people who are honest.

Always stay positive throughout even if its not happening in your favor

Ask questions about role and the company culture.

Never get into Salary or position unless people are interested in you.

Always good to say as "Company standards while negotiating salary than specifying a number unless you are insisted for a specific number "

if you have more questions feel free to reach out @*****
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What makes you right fit for company
  • Ans. 

    My extensive experience in data analysis, strong analytical skills, and ability to communicate complex findings make me the right fit for the company.

    • 10+ years of experience in data analysis

    • Proven track record of delivering actionable insights

    • Strong analytical skills and attention to detail

    • Excellent communication skills to present findings to stakeholders

    • Ability to work effectively in a team environment

  • Answered by AI
  • Q2. Strength and weakness
Round 2 - Coding Test 

SQL
Window functions lead and lead for retention

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. We want QA do you give interview
  • Q2. Please give interview
Round 2 - Behavioral 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Quality questions

Interview Preparation Tips

Interview preparation tips for other job seekers - HR is responsive only till scheduling interview
HR is not responding after interview
Finally thank you email
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Im waiting for Interview
  • Q2. Ready to join Phonepe - please call XXXXX
Round 2 - HR 

(2 Questions)

  • Q1. Please contact XXXXX
  • Q2. I'm immediate joiner, 6 Yrs of exp in quality auditing

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    The task is to check whether a given string is a palindrome or not, considering only alphabets and numbers and ignoring symbols and whitespaces.

    • Convert the string to lowercase and remove all symbols and whitespaces.

    • Reverse the modified string and compare it with the original string.

    • If they are equal, then the string is a palindrome.

    • If not, then the string is not a palindrome.

  • Answered by AI
  • Q2. 

    Square Root (Integral) Problem Statement

    Given a number N, calculate its square root and output the integer part only.

    Example:

    Input:
    18
    Output:
    4
    Explanation:

    The square root of 18 is approximate...

  • Ans. 

    The task is to find the integral part of the square root of a given number.

    • Use the built-in square root function to find the square root of the number.

    • Convert the result to an integer by rounding down or using the floor function.

    • Print the integer part of the square root as the output.

  • Answered by AI
  • Q3. 

    Min Steps to One Using Dynamic Programming

    Given a positive integer N, your task is to determine the minimum number of steps required to reduce N to 1.

    Allowed Operations:

    1) Subtract 1 from it: n = n -...
  • Ans. 

    The task is to find the minimum number of steps required to reduce a positive integer to 1 using three given operations.

    • Use dynamic programming to solve the problem efficiently.

    • Create an array to store the minimum steps required for each number from 1 to N.

    • Iterate from 2 to N and calculate the minimum steps for each number based on the three operations.

    • Return the minimum steps for N.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

They started Fundamentals of OOP- Inheritance, Polymorphism

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Out...
  • Ans. 

    The maximum sum of any contiguous subarray in an array is found using Kadane's algorithm in O(N) time.

    • Initialize two variables, maxSum and currentSum, both set to the first element of the array.

    • Iterate through the array from the second element.

    • For each element, update currentSum by adding the element to it.

    • If currentSum becomes negative, reset it to 0.

    • If currentSum is greater than maxSum, update maxSum.

    • After iterating ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Medium

Some people had two HR interviews but I only had one and interview went up till 11:30 pm and you get only 5-10 minutes to prepare for HR on Zoom

Interview Preparation Tips

Eligibility criteria7 cgpaMasterCard interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, Aptitude , CN, OSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Solve atleast 200 problems
Tip 2 : Focus on all data structures 
Tip 3 : Build some good projects

Application resume tips for other job seekers

Tip 1 : Keep it precise and concise.
Tip 2 : Build your resume yourself according your skills

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. About the project, Spring concepts, core Java, JUnits etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, know what you are speaking, clear your mind before the interview and get your thoughts together.

I applied via Naukri.com and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. More about my technical side.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay connected with good data which may help in current situation for interview process.

I applied via Campus Placement and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you ans calmly

Tell us how to improve this page.

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 308 Interviews
PayPal Interview Questions
3.9
 • 213 Interviews
HighRadius Interview Questions
2.8
 • 188 Interviews
Fiserv Interview Questions
3.0
 • 176 Interviews
Razorpay Interview Questions
3.6
 • 154 Interviews
MasterCard Interview Questions
3.9
 • 140 Interviews
CapitalOne Interview Questions
3.6
 • 79 Interviews
Rupeek Interview Questions
3.7
 • 62 Interviews
FNZ Interview Questions
2.5
 • 30 Interviews
View all
Executive
48 salaries
unlock blur

₹1.4 L/yr - ₹3.2 L/yr

Operations Executive
46 salaries
unlock blur

₹1.5 L/yr - ₹3.6 L/yr

Assistant Manager
38 salaries
unlock blur

₹2.3 L/yr - ₹5 L/yr

Senior Executive
32 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Analyst
23 salaries
unlock blur

₹3.1 L/yr - ₹4.7 L/yr

Explore more salaries
Compare Ebixcash World Money with

Fiserv

3.0
Compare

PhonePe

4.0
Compare

HighRadius

2.8
Compare

Broadridge Financial Solutions

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