Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by fifthnote - An Ensemble Health Partners Company Team. If you also belong to the team, you can get access from here

Filter interviews by

fifthnote - An Ensemble Health Partners Company Software Engineer Interview Questions and Answers

Updated 16 Oct 2024

fifthnote - An Ensemble Health Partners Company Software Engineer Interview Experiences

1 interview found

Software Engineer Interview Questions & Answers

user image Sarthak jain

posted on 16 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Code related to asp.net

Round 2 - Technical 

(2 Questions)

  • Q1. What is solid principle
  • Ans. 

    SOLID is a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses with...

  • Answered by AI
  • Q2. How to call viewdata
  • Ans. 

    ViewData is used to pass data from controller to view in ASP.NET MVC.

    • Use ViewData dictionary to store data in controller

    • Access ViewData in view using key-value pairs

    • Data stored in ViewData is available only for the current request

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Two coding questions, one is easy and the other is difficult. Who solved 2nd question was shortlisted for an interview.

Round 2 - Interview 

(1 Question)

  • Q1. Introduce yourself—questions from OS, DBMS, DSA, Project, and one coding problem.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Apptitude test is so easy it consists of English, technical mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. SQL rank function
  • Q2. Difference between count, count(*)
  • Ans. 

    count(*) counts all rows in a table, while count(column_name) counts non-null values in a specific column.

    • count(*) counts all rows in a table

    • count(column_name) counts non-null values in a specific column

    • count(*) is generally used to get the total number of rows in a table

    • count(column_name) is used to count non-null values in a specific column

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPS concepts, function overload, override,interface,string, string builder
Round 2 - HR 

(1 Question)

  • Q1. Company profile,salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Give the proper answer for the question,
Don't give unnecessary answers
Be possitive
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2022. 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 - Technical 

(3 Questions)

  • Q1. OOps, C#, MVC, WEBAPI, Azure
  • Q2. Multiple inheritance concept in OOPs?
  • Ans. 

    Multiple inheritance allows a class to inherit attributes and methods from more than one parent class.

    • In multiple inheritance, a class can inherit from two or more parent classes.

    • It can lead to the Diamond Problem where a class inherits from two classes that have a common ancestor.

    • Languages like C++ support multiple inheritance.

    • Example: class ChildClass : public ParentClass1, public ParentClass2 {}

  • Answered by AI
  • Q3. What is interface?
  • Ans. 

    An interface in software development defines a contract for classes to implement, specifying methods and properties that must be included.

    • Interfaces in programming languages like Java, C#, and TypeScript allow for multiple inheritance by defining a set of methods that a class must implement.

    • Interfaces are used to enforce a common structure across different classes, promoting code reusability and maintainability.

    • Example...

  • Answered by AI
Round 3 - Coding Test 

Create Crud operation using angular with API.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Two coding questions, one is easy and the other is difficult. Who solved 2nd question was shortlisted for an interview.

Round 2 - Interview 

(1 Question)

  • Q1. Introduce yourself—questions from OS, DBMS, DSA, Project, and one coding problem.

I applied via Campus Placement and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain about data structures
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures can be linear or non-linear

    • Examples of linear data structures include arrays, linked lists, and stacks

    • Examples of non-linear data structures include trees and graphs

    • Choosing the right data structure can greatly impact the efficiency of algorithms

  • Answered by AI
  • Q2. I have answered

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with all the cse core subjects

Skills evaluated in this interview

I applied via Referral and was interviewed before Oct 2021. There were 3 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 

(2 Questions)

  • Q1. Basic concept of c#,.net framework
  • Q2. What is CFA and DFA in entity framework core
  • Ans. 

    CFA and DFA are Change-Tracking and Database-First Approaches in Entity Framework Core.

    • CFA (Change-Tracking Approach) is used to track changes made to entities in memory and then save them to the database.

    • DFA (Database-First Approach) is used to generate entity classes and DbContext from an existing database schema.

    • CFA is useful when working with disconnected entities, while DFA is useful when working with an existing ...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It is easy to clear

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Question related asp.net core , C#

Interview Preparation Tips

Interview preparation tips for other job seekers - This company is not good company

I applied via campus placement at BV Raju Institute of Technology, Medak and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Write a program to get minimum number of coins.
  • Ans. 

    Program to get minimum number of coins.

    • Create an array of coin denominations

    • Sort the array in descending order

    • Loop through the array and subtract the highest denomination possible

    • Repeat until the remaining amount is 0

  • Answered by AI
  • Q2. Circular linked list.
  • Q3. Logic for a program to sort an array in which we have an array of infinite length but contains only three elements like -1, 0,1.
  • Ans. 

    Sorting an array of infinite length with only three elements (-1, 0, 1)

    • Use counting sort algorithm to count the frequency of each element

    • Create a new array with sorted elements based on their frequency

    • Time complexity is O(n) and space complexity is O(1)

    • Example: [-1, 1, 0, 1, -1, 0, 1, -1, 0, 1, ...]

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thoroughly refer data structures, basics of SQL and basic idea about Cloud Computing.

Skills evaluated in this interview

fifthnote - An Ensemble Health Partners Company Interview FAQs

How many rounds are there in fifthnote - An Ensemble Health Partners Company Software Engineer interview?
fifthnote - An Ensemble Health Partners Company interview process usually has 2 rounds. The most common rounds in the fifthnote - An Ensemble Health Partners Company interview process are Coding Test and Technical.
How to prepare for fifthnote - An Ensemble Health Partners Company Software Engineer 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 fifthnote - An Ensemble Health Partners Company. The most common topics and skills that interviewers at fifthnote - An Ensemble Health Partners Company expect are .Net, ASP.Net, HTML, Javascript and Angular.
What are the top questions asked in fifthnote - An Ensemble Health Partners Company Software Engineer interview?

Some of the top questions asked at the fifthnote - An Ensemble Health Partners Company Software Engineer interview -

  1. What is solid princi...read more
  2. How to call viewd...read more

Tell us how to improve this page.

fifthnote - An Ensemble Health Partners Company Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ZoomRx Interview Questions
3.0
 • 33 Interviews
Viacom18 Media Interview Questions
3.5
 • 28 Interviews
Modak Analytics Interview Questions
4.0
 • 23 Interviews
Jasper Colin Interview Questions
4.1
 • 22 Interviews
Gaana Interview Questions
3.8
 • 14 Interviews
Decision Point Interview Questions
4.1
 • 13 Interviews
View all
10% less than the average Software Engineer Salary in India
View more details

fifthnote - An Ensemble Health Partners Company Software Engineer Reviews and Ratings

based on 3 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.5

Salary

4.5

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 3 Reviews and Ratings
ETL Developer
11 salaries
unlock blur

₹9 L/yr - ₹11.5 L/yr

Database Developer
10 salaries
unlock blur

₹4.2 L/yr - ₹8.5 L/yr

Devops Engineer
9 salaries
unlock blur

₹10 L/yr - ₹10 L/yr

Data Scientist 2
7 salaries
unlock blur

₹21 L/yr - ₹21 L/yr

Power BI Developer
7 salaries
unlock blur

₹7 L/yr - ₹9.2 L/yr

Explore more salaries
Compare fifthnote - An Ensemble Health Partners Company with

Saregama India

4.0
Compare

T-Series

3.8
Compare

Gaana

3.8
Compare

Hungama Digital Media Entertainment

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