Upload Button Icon Add office photos

LogixHealth

Compare button icon Compare button icon Compare

Filter interviews by

LogixHealth Senior Software Engineer Interview Questions and Answers

Updated 10 Jan 2024

LogixHealth Senior Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Basic c#and MVC architecture, partial view, singleton class
  • Q2. Index ,view, optimisation techniques in database
  • Ans. 

    Indexing, viewing, and optimization techniques are essential for improving database performance.

    • Use indexes to quickly retrieve data from tables

    • Regularly analyze and optimize queries for better performance

    • Utilize views to simplify complex queries and improve readability

    • Consider partitioning tables for better manageability and performance

    • Use tools like explain plans to analyze query performance

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Difference in MVC and ado.net, filters in MVC, resultset in mvc
  • Ans. 

    MVC is a design pattern for organizing code in web applications, while ADO.NET is a data access technology for connecting to databases.

    • MVC stands for Model-View-Controller and helps in separating concerns in web applications.

    • ADO.NET is a data access technology in .NET framework for connecting to databases.

    • Filters in MVC are used to add pre-processing or post-processing logic to controller actions.

    • Resultset in MVC refer...

  • Answered by AI
  • Q2. Rank functions in SQL server
  • Ans. 

    Functions in SQL server can be ranked based on their usage, complexity, and performance.

    • Rank functions based on usage - COUNT, SUM, AVG, MAX, MIN

    • Rank functions based on complexity - CASE, COALESCE, ISNULL

    • Rank functions based on performance - ROW_NUMBER, RANK, DENSE_RANK

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - HR 

(2 Questions)

  • Q1. Orientation skills
  • Q2. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - good experience
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Maximal rectangal
  • Q2. Loop in linked list
  • Ans. 

    Loop in linked list is a situation where a node points to a previous node in the list, creating an infinite loop.

    • Check for loops using Floyd's cycle detection algorithm

    • Use two pointers, one moving twice as fast as the other, to detect a loop

    • If the fast pointer catches up to the slow pointer, there is a loop

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Basic hr question regarding your project and all
  • Q2. He was more interested in what is my thinking pattern

Skills evaluated in this interview

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 - Coding Test 

Two easy questions two wasy questions two easy questions two easy questions

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interviews was very easy techijcal interviews was very easy very easy very easy
  • Q2. Interviews was conducted in advance of a news conference in the United Kingdom and the European government on Tuesday

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghar was the second man killed by an twowwywiwywuw The new rules would be similar y
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 coding question, and basic MCQ

I applied via Referral and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Find k min elements in given array.
  • Ans. 

    Find k min elements in given array.

    • Sort the array and return the first k elements.

    • Use a min heap of size k to find the k min elements.

    • Use quickselect algorithm to find the kth smallest element and return first k elements smaller than it.

  • Answered by AI
  • Q2. Find that given tree is BST or not.
  • Ans. 

    Check if a given tree is a Binary Search Tree (BST) or not.

    • Traverse the tree in-order and check if the elements are in ascending order.

    • Check if the maximum value in the left subtree is less than the root and the minimum value in the right subtree is greater than the root.

    • Use recursion to check if all subtrees are BSTs.

    • Time complexity: O(n), Space complexity: O(h) where h is the height of the tree.

  • Answered by AI
  • Q3. Find pair in BST with given sum
  • Ans. 

    Given a BST and a sum, find a pair of nodes whose values add up to the given sum.

    • Traverse the BST in-order and store the nodes in a list

    • Use two pointers approach to find the pair with the given sum

    • If the sum is less than the current pair, move the right pointer to the left

    • If the sum is greater than the current pair, move the left pointer to the right

    • If the sum is equal to the current pair, return the pair

    • Time complexit

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was Focused on DS Algo mostly.
2 technical round ( DS Algo)
1 managerial round ( General past working experiences questions)

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Prepare well on coding n programming

Round 2 - Group Discussion 

Topic will be give should talk for a min

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What fifo? diff btwn fifo and lifo
  • Ans. 

    FIFO stands for First In, First Out. LIFO stands for Last In, First Out.

    • FIFO is a method for organizing and manipulating a data buffer, where the first element added is the first to be removed.

    • LIFO is a method where the last element added is the first to be removed.

    • FIFO is like a queue, while LIFO is like a stack.

    • Example: In a FIFO queue, if elements A, B, and C are added in that order, they will be removed in the same...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

In Mu Sigma APT round is divided into 3 sections Quant, Logical and verbal

Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain oops concept
  • Ans. 

    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.

    • Key concepts include classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for creating objects, while objects are instances of classes.

    • Inheritance allows a class to i...

  • Answered by AI
Round 2 - Coding Test 

Coding was good and it was based on bubble sort

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing

LogixHealth Interview FAQs

How many rounds are there in LogixHealth Senior Software Engineer interview?
LogixHealth interview process usually has 2 rounds. The most common rounds in the LogixHealth interview process are Technical.
What are the top questions asked in LogixHealth Senior Software Engineer interview?

Some of the top questions asked at the LogixHealth Senior Software Engineer interview -

  1. Difference in MVC and ado.net, filters in MVC, resultset in ...read more
  2. Index ,view, optimisation techniques in datab...read more
  3. Rank functions in SQL ser...read more

Tell us how to improve this page.

LogixHealth Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 233 Interviews
Sigmoid Interview Questions
3.3
 • 59 Interviews
Merilytics Interview Questions
3.0
 • 50 Interviews
ICRA Analytics Interview Questions
3.4
 • 39 Interviews
Dunnhumby Interview Questions
4.0
 • 29 Interviews
Everest Group Interview Questions
3.3
 • 25 Interviews
Coronis Health Interview Questions
3.7
 • 24 Interviews
View all
LogixHealth Senior Software Engineer Salary
based on 26 salaries
₹7.1 L/yr - ₹17.5 L/yr
31% less than the average Senior Software Engineer Salary in India
View more details

LogixHealth Senior Software Engineer Reviews and Ratings

based on 3 reviews

2.8/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

1.9

Salary

1.7

Job security

1.8

Company culture

3.4

Promotions

2.1

Work satisfaction

Explore 3 Reviews and Ratings
Senior Quality Analyst
125 salaries
unlock blur

₹3.3 L/yr - ₹8.5 L/yr

Medical Coder
98 salaries
unlock blur

₹1.8 L/yr - ₹6.5 L/yr

Group Coordinator
97 salaries
unlock blur

₹4.2 L/yr - ₹9.4 L/yr

Senior Specialist
81 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Specialist
70 salaries
unlock blur

₹2.5 L/yr - ₹5.8 L/yr

Explore more salaries
Compare LogixHealth with

Indegene

3.4
Compare

Markets and Markets

3.2
Compare

Coronis Health

3.7
Compare

Quintessence Business Solutions & Services

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