Upload Button Icon Add office photos

Medi Assist India

Compare button icon Compare button icon Compare

Filter interviews by

Medi Assist India Software Engineer2 Interview Questions and Answers

Updated 26 Aug 2022

Medi Assist India Software Engineer2 Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. The question was based on node js and one DSA question was asked it was easy to medium level question
  • Q2. Reverse words in a string
  • Ans. 

    Reverse words in a string

    • Split the string into an array of words

    • Reverse the array

    • Join the array into a string

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. The second round also was based on node js and again one DSA question was asked also i was asked about previous projects
Round 3 - HR 

(1 Question)

  • Q1. This was round with hiring manager it was very easy going round i was asked about intermediate javascript and node js questions and thats it

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for your projects and previous company projects if any and prepare for medium level DSA questions and you are good to go

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Laravel function
  • Q2. MySQL querirs
  • Q3. Deal with millions data on db
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain dependency injection in .NET and how to resolve dependency?
  • Ans. 

    Dependency injection in .NET is a design pattern where dependencies are injected into a class rather than the class creating them itself.

    • Dependency injection helps in achieving loose coupling between classes.

    • In .NET, dependency injection can be implemented using frameworks like Unity, Ninject, or built-in .NET Core DI container.

    • Dependencies can be resolved through constructor injection, property injection, or method in...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Discussion on work experience and what are the projects that you have worked on?

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic oops consept.
Round 2 - One-on-one 

(1 Question)

  • Q1. About your last work experience
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What lib list ?
  • Ans. 

    A list of libraries used in software development.

    • Common libraries like React, Angular, jQuery

    • Backend libraries like Express, Django, Spring

    • Database libraries like Sequelize, SQLAlchemy, Hibernate

  • Answered by AI
  • Q2. What is Physical file
  • Ans. 

    A physical file is a file stored on a physical storage device, such as a hard drive or solid-state drive.

    • Physical files are stored on physical storage devices like hard drives or SSDs.

    • They can be accessed and manipulated by software applications.

    • Examples include text documents, images, videos, and executable programs.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is batch job
  • Ans. 

    A batch job is a program that processes a large amount of data in a single run without user interaction.

    • Batch jobs are typically scheduled to run at specific times, often during off-peak hours.

    • They are commonly used for tasks such as data processing, report generation, and system maintenance.

    • Examples of batch job tools include cron in Unix/Linux systems and Task Scheduler in Windows.

  • Answered by AI
  • Q2. What is interctive job
  • Ans. 

    An interactive job is a task or project that requires active participation and engagement from the user.

    • Interactive jobs involve real-time feedback and communication between the user and the system.

    • Examples include video games, online surveys, and interactive websites.

    • Users have control over the outcome of the task based on their input and decisions.

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

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Easy coding questions
Round 2 - One-on-one 

(1 Question)

  • Q1. DSA questions , palindrome
Round 3 - HR 

(1 Question)

  • Q1. Why are you joining this company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 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 - Technical 

(2 Questions)

  • Q1. Java 8 questions
  • Q2. Collections, Stream, Microservices
Round 3 - Technical 

(1 Question)

  • Q1. Behavioural and managerial round
Round 4 - HR 

(1 Question)

  • Q1. Expectations, about education and previous job. Nothing extra
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(6 Questions)

  • Q1. What is opps explain in details
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation

    • Example: In a banking system, you can have classes like Account, Customer, and Tra

  • Answered by AI
  • Q2. What is string and string builder
  • Ans. 

    String is a sequence of characters, while StringBuilder is a mutable sequence of characters used for manipulating strings efficiently.

    • String is immutable in Java, meaning once created, it cannot be changed.

    • StringBuilder is mutable and allows for efficient manipulation of strings.

    • String concatenation using '+' operator creates a new string object each time, while StringBuilder's append method modifies the existing objec...

  • Answered by AI
  • Q3. What is boxing and unboxing
  • Ans. 

    Boxing is the process of converting a value type to a reference type, while unboxing is the opposite process.

    • Boxing is done implicitly by the compiler when a value type is assigned to a reference type variable.

    • Unboxing requires explicit casting to convert a reference type back to a value type.

    • Example: int num = 10; object obj = num; // Boxing

    • Example: int num2 = (int)obj; // Unboxing

  • Answered by AI
  • Q4. What is difference btw interface and abstract and why we use them
  • Ans. 

    Interfaces define a contract for classes to implement, while abstract classes can have both abstract and concrete methods.

    • Interfaces can only have abstract methods and constants, while abstract classes can have both abstract and concrete methods.

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

    • Interfaces are used for achieving multiple inheritance in Java, while abstract classes ar...

  • Answered by AI
  • Q5. What r the validations used in asp.net
  • Ans. 

    ASP.NET uses various validations like RequiredFieldValidator, RangeValidator, RegularExpressionValidator, etc.

    • RequiredFieldValidator - Ensures a field is not left blank

    • RangeValidator - Validates if a value falls within a specified range

    • RegularExpressionValidator - Validates input based on a specified pattern

  • Answered by AI
  • Q6. What is API and what are its type
  • Ans. 

    API stands for Application Programming Interface. It defines the methods and data formats that applications can use to communicate with each other.

    • APIs can be classified into different types such as RESTful APIs, SOAP APIs, and GraphQL APIs.

    • RESTful APIs use standard HTTP methods like GET, POST, PUT, DELETE to perform operations on resources.

    • SOAP APIs use XML-based messaging protocol for communication between applicatio...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Paramount Health Services Tpa Junior Software Developer interview:
  • Web Api
  • ASP.Net
  • C#.Net
  • Java script
  • Html css
Interview preparation tips for other job seekers - Simple interview process just make the basics concepts clear and you will be selected

Skills evaluated in this interview

I applied via campus placement at Birla Institute of Technology (BIT), Ranchi and was interviewed in Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

There were 2coding questions. I don't remember the exact coding questions but they were of moderate level. Basically, arrays and linked-list questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Prior to the technical interview, there was pre-placement talk in the morning as the talk ended they started the interviews.
  • Q2. Introduction questions on JAVA i.e. diff. between c++ and java, oops concept, discussion on a programming question Data structures related questions. All questions were basically from what you mentioned in...

Interview Preparation Tips

Topics to prepare for Aegon Life Insurance Software Trainee interview:
  • Java
  • Data Structures
  • C++
  • Programming
Interview preparation tips for other job seekers - Just prepare what you have mentioned in your resume.
and programming language
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Laravel function
  • Q2. MySQL querirs
  • Q3. Deal with millions data on db

Medi Assist India Interview FAQs

How many rounds are there in Medi Assist India Software Engineer2 interview?
Medi Assist India interview process usually has 3 rounds. The most common rounds in the Medi Assist India interview process are Technical and HR.
What are the top questions asked in Medi Assist India Software Engineer2 interview?

Some of the top questions asked at the Medi Assist India Software Engineer2 interview -

  1. Reverse words in a str...read more
  2. The question was based on node js and one DSA question was asked it was easy to...read more
  3. The second round also was based on node js and again one DSA question was asked...read more

Tell us how to improve this page.

Medi Assist India Software Engineer2 Salary
based on 4 salaries
₹12 L/yr - ₹19 L/yr
25% less than the average Software Engineer2 Salary in India
View more details
Medical Officer
768 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Senior Executive
565 salaries
unlock blur

₹1.9 L/yr - ₹5.2 L/yr

Team Lead
309 salaries
unlock blur

₹2.5 L/yr - ₹7.2 L/yr

Executive
296 salaries
unlock blur

₹1.2 L/yr - ₹4 L/yr

Assistant Manager
253 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Explore more salaries
Compare Medi Assist India with

Star Health & Allied Insurance

3.7
Compare

Niva Bupa Health Insurance Company

3.7
Compare

ICICI Lombard General Insurance Company

3.7
Compare

Care Health Insurance

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