Upload Button Icon Add office photos

Filter interviews by

Bizmatics India Interview Questions and Answers

Updated 15 Jun 2024

Bizmatics India Interview Experiences

Popular Designations

8 interviews found

Medical Coder Interview Questions & Answers

user image Anonymous

posted on 22 Jul 2021

Interview Questionnaire 

3 Questions

  • Q1. Regarding rcm
  • Q2. Basic coding knowledge
  • Q3. Modifiers

Medical Coder Interview Questions asked at other Companies

Q1. Any one respiratory disease name and which drugs is used
View answer (28)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Why are you switch your job
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why are you switch your job

Senior Executive Interview Questions asked at other Companies

Q1. If oneday the men power is very less due to some problem and lode is more that day as a senior Exucative, how will u handle your team ?
View answer (56)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Good sjjwjaj jsjan jsjwj
  • Q2. Hsjajsjjsjsj jsja jsjja jsnsjns

Interview Preparation Tips

Interview preparation tips for other job seekers - Ha

Hard Goods Merchandiser Interview Questions asked at other Companies

Q1. Many technology is tested here.What is your experience?
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral

Round 1 - Aptitude Test 

Basic Java And Jsp questions

Round 2 - Coding Test 

If experienced will be asked to reverse the String array

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

Bizmatics India interview questions for popular designations

 Software Engineer

 (2)

 Hard Goods Merchandiser

 (1)

 Payment Associate

 (1)

 QA Executive

 (1)

 Accounts Receivable Executive

 (1)

 Senior Executive

 (1)

 Medical Coder

 (1)

QA Executive Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions asked related to testing background
Round 2 - Assignment 

Writing test cases in excel

Round 3 - HR 

(1 Question)

  • Q1. General questions related to past experience

QA Executive Interview Questions asked at other Companies

Q1. What is the pass or fail Criteria in Friability test Apparatus?
View answer (2)

I applied via Naukri.com and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. What are your salary expectations?
  • Q3. Share details of your previous job.
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.
Round 2 - One-on-one 

(5 Questions)

  • Q1. Tell me brief about yourself?
  • Q2. What was previous experience ? Why do you left your job?
  • Q3. Whats your salary expectations ?
  • Q4. Where do I stay? Can i relocate for job?
  • Q5. Questions about Rcm ?

Interview Preparation Tips

Topics to prepare for Bizmatics India Accounts Receivable Executive interview:
  • RCM
Interview preparation tips for other job seekers - I would suggest be confident and honest and can converse in english without fumbling for atleast 5 minutes. You will be selected for this profile anywhere if you can follow above advice.

Accounts Receivable Executive Interview Questions asked at other Companies

Q1. yes, it is a section under income tax act, wherein TDS charges @0.1 % on taxable value. if turnover of any buyer is more than 5 cr. then buyer has to deduct TDS @0.1% under section 194 Q if turnover is note exceeding 5 Cr. Seller has to cha... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Dec 2022. There were 5 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 

Process related questions

Round 3 - HR 

(1 Question)

  • Q1. My self question
Round 4 - Behavioral 

(1 Question)

  • Q1. Process knowledge questions
Round 5 - Behavioral 

(1 Question)

  • Q1. My Self with process related

Interview Preparation Tips

Interview preparation tips for other job seekers - you have to all process related knowledge

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Core java features, About Collection class, Arraylist, Servlet, Jsp
  • Q2. About tomcat server, logical questions on distance and time.

Interview Preparation Tips

Interview preparation tips for other job seekers - While giving an online interview be honest with yourself. Do not make any type of cheating. Be confident. If you don't know anything then honestly say you don't know but show ability to learn new things.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

Interview questions from similar companies

Software Engineer Interview Questions & Answers

Medlife user image nerella saikrishna

posted on 9 Jan 2016

Interview Questionnaire 

12 Questions

  • Q1. Insert a node in a Linked List, if a pointer to a node(it's not a head pointer) of Linked List is given.
  • Q2. What is the Time Complexity of Binary Search and it's derivation
  • Ans. 

    Binary Search has a time complexity of O(log n) and is derived from dividing the search space in half at each step.

    • Binary Search is a search algorithm that works on sorted arrays.

    • It starts by comparing the target value to the middle element of the array.

    • If the target value is smaller, the search continues on the lower half of the array.

    • If the target value is larger, the search continues on the upper half of the array.

    • T...

  • Answered by AI
  • Q3. Write code for QuickSort
  • Ans. 

    QuickSort is a sorting algorithm that uses divide and conquer approach.

    • Choose a pivot element from the array

    • Partition the array into two sub-arrays, one with elements less than the pivot and one with elements greater than the pivot

    • Recursively apply the above steps to the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
  • Q4. Write code for Fibonacci Series using Recursion, Iteration and Dynamic Programming
  • Ans. 

    Code for Fibonacci Series using Recursion, Iteration and Dynamic Programming

    • Recursion: Define a function that calls itself with the previous two numbers in the series as arguments

    • Iteration: Use a loop to calculate the series by adding the previous two numbers in each iteration

    • Dynamic Programming: Store the previous two numbers in variables and use them to calculate the next number in the series

  • Answered by AI
  • Q5. How to implement an operation with Stacks which will be similar to Queue
  • Ans. 

    Implementing a Queue using Stacks

    • Use two stacks to implement a queue

    • Push elements onto the first stack

    • When dequeuing, pop all elements from the first stack and push onto the second stack

    • Pop the top element from the second stack to dequeue

    • If the second stack is empty, pop all elements from the first stack and push onto the second stack

  • Answered by AI
  • Q6. Write code for MergeSort
  • Ans. 

    MergeSort is a divide and conquer algorithm that sorts an array of strings.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q7. 2 types of detective ball puzzles
  • Q8. 25 Horses, 5 Tracks, 3 Fastest Puzzle
  • Q9. How the letters of a text are determined(Basically about OCR)
  • Q10. Write code for Insertion Sort and Selection Sort and find their time complexities and also the cases where their usage is efficient
  • Q11. Explain about Counting Sort
  • Ans. 

    Counting Sort is a sorting algorithm that sorts elements by counting the number of occurrences of each unique element.

    • Count the occurrences of each element in the array

    • Calculate the cumulative sum of the counts

    • Place each element in the sorted array based on its count and cumulative sum

    • Time complexity is O(n+k) where n is the number of elements and k is the range of input

    • Example: Sort an array of strings based on their

  • Answered by AI
  • Q12. When we type a part of a word in chrome, how is it able to show all the types of words, which are consisted of that part
  • Ans. 

    Chrome uses an algorithm to predict and suggest words based on user input.

    • Chrome's algorithm uses a combination of user history, bookmarks, and popular searches to predict and suggest words.

    • The algorithm also takes into account the frequency and recency of the user's input.

    • Chrome's suggestion feature is powered by Google's Autocomplete API, which uses machine learning to predict and suggest words.

    • The suggestions are di...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: First Question, at the start I was not able to answer and he gave me an hint(He asked me the insertion in an array). So, I got the idea for the insertion in Linked List and was able to answer it.
Remaining questions, I was able to answer confidently.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I was able to answer all the questions confidently, since I know the answers for them, But the last question was out of my scope and I explained based on my intuition and knowledge.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I have given the answers for 1&2 questions with clear explanation. And the third question is again out of my scope and I explained this also based intuition.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

General Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skill Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skills: Logical Puzzles, Algorithms And DataStructures
College Name: IIT Madras
Motivation: 1. Primary Reason: Passionate about Programming and Problem solving.
2. The profile is software Engineer.
3. You can see your idea, having an impact on the society which is possible with this type of company.
4. And a good package.
Funny Moments: Nothing Really...

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: There was Pool Campus Placement of  4 Colleges together(NIT Jalandhar,NIT Hamirpur ,Candigarh University and CGC Landran ) at Chandigarh University.Written test was taken on Hacker Rank. There were 5 Coding Questions of Linklist , Dynamic Programming,Priority Queues etc . 
You didn't have to do All the questions (3 can get you to the next round).

One thing that need to be beware of is that on Hacker Rank Your Draft is Saved every second(or so). So don't copy from the internet and just paste there(they will get to know).
Tips: Make sure you practice lot of Algorithms.
Duration: 120 minutes
Total Questions: 5

Round: Problem Statement
Experience: Only 8 Students were selected for this round
20 mins were given for it
and afterwards each student had personal discussion(10 mins) with them to explain their schema .
3-4 Questions were also asked related to your schema and how to perform a particular query
Tips: You should Be Through with DBMS
Make sure there is no redundant table and Primary keys are marked

Round: Technical Interview
Experience: 2 were selected for the Interview
Firstly they make you very Comfortable and ask how were the previous Rounds.
Then they asked about the two questions of First Round and my approach 
Then couple of questions on The design that was made Earlier.
Then there were questions on How Internet Works ,gcc,Linux,git,sql.

Then the Interviewer asked if I have any question
I asked about (as the work on doctor's app) how they know the credibility of a doctor which is enlisted in their app.
Interviewer was really Impressed by the question and told me all about it with all details.


Both were selected
Tips: Be cool in the Interview
Think Loudly and Interact with them well.
If they want you to ask any question ,it should not be related to technical stuff ,it should be related to the company

College Name: NIT JALANDHAR

Bizmatics India Interview FAQs

How many rounds are there in Bizmatics India interview?
Bizmatics India interview process usually has 2-3 rounds. The most common rounds in the Bizmatics India interview process are HR, One-on-one Round and Aptitude Test.
How to prepare for Bizmatics India interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Bizmatics India. The most common topics and skills that interviewers at Bizmatics India expect are US Healthcare, RCM, Javascript, Revenue Cycle Management and SQL.
What are the top questions asked in Bizmatics India interview?

Some of the top questions asked at the Bizmatics India interview -

  1. Questions about Rc...read more
  2. Core java features, About Collection class, Arraylist, Servlet, J...read more
  3. About tomcat server, logical questions on distance and ti...read more

Tell us how to improve this page.

Bizmatics India Interview Process

based on 5 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

Tata 1mg Interview Questions
3.6
 • 146 Interviews
PharmEasy Interview Questions
3.7
 • 80 Interviews
MedPlus Interview Questions
3.6
 • 79 Interviews
Practo Interview Questions
3.2
 • 74 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
MediBuddy Interview Questions
3.5
 • 31 Interviews
Portea Medical Interview Questions
3.8
 • 28 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
HealthKart Interview Questions
4.0
 • 25 Interviews
Lybrate Interview Questions
3.5
 • 5 Interviews
View all

Bizmatics India Reviews and Ratings

based on 108 reviews

3.4/5

Rating in categories

3.0

Skill development

3.4

Work-life balance

3.0

Salary

3.4

Job security

3.2

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 108 Reviews and Ratings
Software Engineer
43 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Medical Coder
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Executive
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Medical Coder
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Bizmatics India with

Practo

3.2
Compare

Lybrate

3.5
Compare

Portea Medical

3.8
Compare

PharmEasy

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