Upload Button Icon Add office photos

Medusind Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Medusind Solutions Interview Questions, Process, and Tips

Updated 22 Jan 2025

Top Medusind Solutions Interview Questions and Answers

View all 20 questions

Medusind Solutions Interview Experiences

Popular Designations

31 interviews found

Interview Questionnaire 

1 Question

  • Q1. What is medical billing

Interview Preparation Tips

Interview preparation tips for other job seekers - Please. Do. Appropritely,

AR Caller Interview Questions asked at other Companies

Q1. Do you have any technical certifications? How many programming languages do you know? What are the different types of OS you are comfortable working with? What is the extent of your technical expertise?
View answer (3)

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

Interview Questionnaire 

15 Questions

  • Q1. Difference between asp .net Vs asp .net MVC? Explain benefits of MVC?
  • Ans. 

    ASP.NET is a web development framework while ASP.NET MVC is a design pattern for building web applications.

    • ASP.NET is a web development framework that follows a Web Forms model, where the UI and logic are tightly coupled.

    • ASP.NET MVC is a design pattern that separates the UI and logic, providing better maintainability and testability.

    • MVC allows for more control over the HTML, CSS, and JavaScript, making it easier to cre...

  • Answered by AI
  • Q2. Difference between partial and render partial in MVC?
  • Ans. 

    Partial is a method in MVC that renders a specific portion of a view, while render partial renders a partial view.

    • Partial is used to render a specific portion of a view, while render partial is used to render a partial view.

    • Partial is typically used within a view to render a reusable component, while render partial is used to render a separate partial view.

    • Partial can be used with parameters to pass data to the partial...

  • Answered by AI
  • Q3. Explain Different ways to send data view to controller?
  • Ans. 

    Different ways to send data view to controller

    • Using form submission

    • Using AJAX requests

    • Using URL parameters

    • Using cookies or local storage

    • Using web sockets

  • Answered by AI
  • Q4. Difference between jQuery post and Ajax post in MVC?
  • Ans. 

    jQuery post is a shorthand method for Ajax post in MVC.

    • jQuery post is a shorthand method for Ajax post in MVC

    • jQuery post uses the $.post() method while Ajax post uses $.ajax() method

    • jQuery post is simpler and easier to use than Ajax post

    • Both methods are used to send data to the server without reloading the page

  • Answered by AI
  • Q5. Ajax with form submit?
  • Ans. 

    Ajax is a technique used to send and receive data from a server without refreshing the entire web page.

    • Ajax stands for Asynchronous JavaScript and XML.

    • It allows for asynchronous communication between the client and server.

    • With Ajax, form submission can be done without reloading the entire page.

    • The data is sent to the server in the background and the response can be processed without interrupting the user's interaction ...

  • Answered by AI
  • Q6. Different types of action result in MVC?
  • Ans. 

    Different types of action result in MVC include ViewResult, PartialViewResult, JsonResult, and RedirectResult.

    • ViewResult: Returns a complete HTML view to the client.

    • PartialViewResult: Returns a partial HTML view to the client.

    • JsonResult: Returns JSON data to the client.

    • RedirectResult: Redirects the client to a different URL.

  • Answered by AI
  • Q7. Routing in MVC?
  • Ans. 

    Routing in MVC is the process of mapping URLs to specific actions or controllers in an application.

    • Routing determines how an incoming request is handled and which controller and action should be executed.

    • It helps in creating clean and user-friendly URLs.

    • Routes can be defined using attributes or in a route configuration file.

    • Parameters can be passed in the URL and accessed in the controller action.

    • Routing can also handl

  • Answered by AI
  • Q8. Security in MVC explain? How to secure your web as well as API ?
  • Ans. 

    Security in MVC involves implementing authentication, authorization, and secure communication to protect web and API resources.

    • Implement authentication mechanisms like username/password, tokens, or OAuth.

    • Use authorization to control access to resources based on user roles and permissions.

    • Secure communication by using HTTPS and encrypting sensitive data.

    • Implement input validation and sanitization to prevent common secur...

  • Answered by AI
  • Q9. Validation technique in MVC?
  • Ans. 

    Validation technique in MVC is used to ensure that the data entered by the user is valid and meets the specified criteria.

    • Validation can be performed at different levels in MVC, such as client-side validation using JavaScript or server-side validation using data annotations or custom validation logic.

    • Client-side validation provides immediate feedback to the user without making a round trip to the server, while server-s...

  • Answered by AI
  • Q10. Explain depencey injection .how to use?
  • Ans. 

    Dependency injection is a design pattern where the dependencies of a class are provided externally rather than created internally.

    • Dependency injection helps in achieving loose coupling and improves testability and maintainability.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • In constructor injection, dependencies are provided through the class constructo...

  • Answered by AI
  • Q11. Explain MVC filters step by step and how to use in your projects?
  • Ans. 

    MVC filters are used in projects to handle cross-cutting concerns and provide a way to intercept and modify the behavior of MVC actions.

    • MVC filters are attributes that can be applied to controllers or actions.

    • They can be used to perform tasks like authentication, authorization, logging, exception handling, etc.

    • Filters can be applied globally, at the controller level, or at the action level.

    • There are different types of ...

  • Answered by AI
  • Q12. What is singleton design patterns how to use in your projects?
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to one object.

    • Used when only one instance of a class is required throughout the project

    • Provides a global point of access to the instance

    • Can be implemented using a private constructor and a static method

    • Examples include database connections, configuration settings, and logger classes

  • Answered by AI
  • Q13. Difference between abstract and interface and how to use in your projects?
  • Ans. 

    Abstract classes are classes that cannot be instantiated and can have both abstract and non-abstract methods. Interfaces are contracts that define the methods that a class must implement.

    • Abstract classes can have constructors while interfaces cannot

    • A class can implement multiple interfaces but can only inherit from one abstract class

    • Abstract classes can have instance variables while interfaces cannot

    • Interfaces can have...

  • Answered by AI
  • Q14. Difference between cursor and while loop which is better to use?
  • Ans. 

    A cursor is used to retrieve and manipulate data from a database, while a while loop is a control structure used to repeat a block of code.

    • Cursors are used in database operations, while while loops are used in programming logic.

    • Cursors are typically used to iterate over a result set, while while loops can be used for any repetitive task.

    • Cursors can be more efficient for large result sets, while while loops are generall...

  • Answered by AI
  • Q15. Difference between store procedure and function?
  • Ans. 

    Stored procedures and functions are both database objects used to encapsulate a set of SQL statements, but they have some differences.

    • Stored procedures are used to perform an action or a series of actions, while functions are used to return a value.

    • Stored procedures can have input and output parameters, while functions can only have input parameters.

    • Stored procedures can modify data, while functions are read-only.

    • Store...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare basic concept. They asked in detail in your projects wise?

Skills evaluated in this interview

Top Medusind Solutions Senior Software Engineer Interview Questions and Answers

Q1. Difference between asp .net Vs asp .net MVC? Explain benefits of MVC?
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

I applied via Walk-in and was interviewed in Aug 2021. There were 3 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 

Ask short cut keys and general computer knowledge

Round 3 - HR 

(1 Question)

  • Q1. Salary expectation ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Best company for fresher. Us based company.

Customer Service Executive Interview Questions asked at other Companies

Q1. How u deal to the customer if he get non veg food instead of veg food ?
View answer (36)

Interview Questionnaire 

1 Question

  • Q1. Name, hobbies, future goals,

Medusind Solutions interview questions for popular designations

 Client Servicing Executive

 (5)

 Customer Service Executive

 (3)

 Coordinator

 (1)

 Team Leader (Nontechnical)

 (1)

 Customer Care Executive

 (1)

 IT Executive

 (1)

 Senior Software Engineer

 (1)

 Executive

 (1)

Interview Questions & Answers

user image Anonymous

posted on 3 Jun 2022

I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Profile discussion was there
Round 2 - Technical 

(1 Question)

  • Q1. Discussion regarding the work done
  • Ans. Answered the question asked, 70% of the answers were correct
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go for this organization.
Especially for finance team don't go for interview.
What a rubbish environment they have.
I have worked for 1 year and got pay for only six months bcz of pandemic
PTHETIC Company
You are just slave to them
Meera Vaja she was there for more than 5 years in finance department. Never ever opt the offer if you have been selected to work with this vicious lady

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Just be yourself and be casual like the one who is sitting infront of you knows you
  • Q2. Why you wanna join KPO organization
  • Ans. Because it is growing now-a-days in India And good opportunity to learn new things
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and kind. So you can bring and showcase a good image on interviewers mind.

Senior Customer Service Executive Interview Questions asked at other Companies

Q1. What is you are quaficantion ? What is You are habits? What is you are quaficantion ad were You have studied? What is you are age? What is ureached safely job? What is you rope style Strictly Watters?
View answer (1)

Jobs at Medusind Solutions

View all

Interview Questionnaire 

1 Question

  • Q1. No need to prepare anything. Just go and attend the interview.

Client Servicing Executive Interview Questions asked at other Companies

Q1. What is mutual fund not definition i don't know about mutual fund how could you advice me to take mutual fund?
View answer (2)

I applied via Referral and was interviewed before May 2021. 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 - One-on-one 

(2 Questions)

  • Q1. General introduction
  • Q2. Experience details and any preference
Round 3 - Aptitude Test 
Round 4 - One-on-one 

(1 Question)

  • Q1. Salary discussion and expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Do well and it's easy to crack interview

Client Servicing Executive Interview Questions asked at other Companies

Q1. What is mutual fund not definition i don't know about mutual fund how could you advice me to take mutual fund?
View answer (2)

I applied via Referral and was interviewed before Apr 2021. 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 
Round 3 - Mock call 

(1 Question)

  • Q1. Call is taken and asks questions like favourite film gives some words and passage to check speech
Round 4 - HR 

(1 Question)

  • Q1. Discuss about the job salary working days and timings.etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and go on...very cool Atmosphere and good pantry which offers free tea and coffee with biscuits

Sr. CSE Interview Questions asked at other Companies

Q1. How to know about customer requirements
View answer (1)

I applied via Referral and was interviewed before Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Do you have any past experience in medical Billing?
  • Q2. What is your expected salary?
  • Q3. Can you work in night shift?
  • Q4. Where do you see yourself in coming years? I, e(position)

Interview Preparation Tips

Interview preparation tips for other job seekers - A past experience in medical billing is an an added advantage to pursue your career in this field.

Client Servicing Executive Interview Questions asked at other Companies

Q1. What is mutual fund not definition i don't know about mutual fund how could you advice me to take mutual fund?
View answer (2)

Medusind Solutions Interview FAQs

How many rounds are there in Medusind Solutions interview?
Medusind Solutions interview process usually has 2-3 rounds. The most common rounds in the Medusind Solutions interview process are HR, One-on-one Round and Resume Shortlist.
How to prepare for Medusind Solutions 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 Medusind Solutions. The most common topics and skills that interviewers at Medusind Solutions expect are US Healthcare, International Voice Process, Medical Billing, AR Calling and RCM.
What are the top questions asked in Medusind Solutions interview?

Some of the top questions asked at the Medusind Solutions interview -

  1. Difference between asp .net Vs asp .net MVC? Explain benefits of M...read more
  2. Difference between abstract and interface and how to use in your projec...read more
  3. Explain MVC filters step by step and how to use in your projec...read more
How long is the Medusind Solutions interview process?

The duration of Medusind Solutions interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Medusind Solutions Interview Process

based on 26 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.4
 • 271 Interviews
Tiger Analytics Interview Questions
3.7
 • 225 Interviews
Altimetrik Interview Questions
3.8
 • 217 Interviews
Xoriant Interview Questions
4.1
 • 182 Interviews
Incedo Interview Questions
3.1
 • 182 Interviews
Globant Interview Questions
3.8
 • 173 Interviews
ThoughtWorks Interview Questions
3.9
 • 147 Interviews
Iris Software Interview Questions
4.0
 • 144 Interviews
Apexon Interview Questions
3.3
 • 140 Interviews
View all

Medusind Solutions Reviews and Ratings

based on 710 reviews

3.6/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.2

Salary

3.7

Job security

3.6

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 710 Reviews and Ratings
Manager/Sr. Manager - Dental Operations

Ahmedabad

12-20 Yrs

Not Disclosed

Account Receivable Caller - RCM

Mumbai,

Andheri east

0-5 Yrs

Not Disclosed

Account Receivable Caller - RCM

Mumbai

6-10 Yrs

Not Disclosed

Explore more jobs
Client Servicing Executive
492 salaries
unlock blur

₹1.2 L/yr - ₹4 L/yr

Senior Client Servicing Executive
261 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Customer Service Executive
126 salaries
unlock blur

₹1.1 L/yr - ₹4.2 L/yr

Team Coordinator
68 salaries
unlock blur

₹1 L/yr - ₹7.9 L/yr

Team Coach
49 salaries
unlock blur

₹3 L/yr - ₹8.1 L/yr

Explore more salaries
Compare Medusind Solutions with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

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