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

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about LogixHealth?
Ask anonymously on communities.

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
  • Ans. 

    I'm a passionate software engineer with a strong background in full-stack development and a love for problem-solving.

    • Graduated with a degree in Computer Science from XYZ University.

    • Worked at ABC Corp, where I developed a web application that improved user engagement by 30%.

    • Proficient in languages like JavaScript, Python, and Java, with experience in frameworks such as React and Django.

    • Enjoy collaborating in agile teams...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good experience

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
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

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
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 coding question, and basic MCQ

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
  • Ans. 

    Find the largest rectangle containing only 1s in a binary matrix.

    • Use dynamic programming to track heights of consecutive 1s.

    • For each row, treat it as a histogram and calculate the maximal rectangle.

    • Utilize a stack to efficiently compute the largest rectangle in a histogram.

    • Example: For a matrix [[0,1,1],[1,1,0],[1,1,1]], the largest rectangle has area 4.

  • Answered by AI
  • 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

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Theoretical questions around javascript methods
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

It was an easy test. It consisted of MCQs and two coding qns. Prepare SQL well. It also had 2 programming question. Both were medium difficukty

Round 3 - One-on-one 

(1 Question)

  • Q1. It was mainly focussed on my projects. Be thorough with you resume. But it also depends on the interviewer.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in-depth Java and you should know what is on your resume. Medium level of DSA is enough.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Baisc principle
  • Q2. Oops prolem
Round 2 - Aptitude Test 

Old process take aptitude test

Interview Preparation Tips

Interview preparation tips for other job seekers - Not listed company bank not give you a loan because company not listed
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 questions 3 sum linked list missing sum

Round 2 - HR 

(2 Questions)

  • Q1. System Design and hr principles
  • Ans. 

    System design involves creating a high-level architecture of a software system, while HR principles focus on managing people effectively.

    • System design involves identifying components, defining their interactions, and ensuring scalability and reliability.

    • HR principles include hiring the right talent, providing training and development opportunities, and fostering a positive work culture.

    • Both system design and HR princip...

  • Answered by AI
  • Q2. Projects discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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.
How to prepare for LogixHealth Senior 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 LogixHealth. The most common topics and skills that interviewers at LogixHealth expect are .NET, Angular, Azure DevOps, C# and Data Bricks.
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.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%
View more

Interview Questions from Similar Companies

Sigmoid Interview Questions
3.4
 • 62 Interviews
Merilytics Interview Questions
2.9
 • 50 Interviews
ICRA Analytics Interview Questions
3.3
 • 43 Interviews
Dunnhumby Interview Questions
4.0
 • 31 Interviews
Coronis Health Interview Questions
3.7
 • 26 Interviews
Everest Group Interview Questions
3.3
 • 25 Interviews
View all
LogixHealth Senior Software Engineer Salary
based on 27 salaries
₹7.1 L/yr - ₹18 L/yr
27% 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.8

Skill development

3.9

Work-life balance

1.9

Salary

1.6

Job security

1.8

Company culture

3.5

Promotions

2.1

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer

Coimbatore,

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Explore more jobs
Senior Quality Analyst
123 salaries
unlock blur

₹3.3 L/yr - ₹8.5 L/yr

Medical Coder
103 salaries
unlock blur

₹2.5 L/yr - ₹6.7 L/yr

Group Coordinator
97 salaries
unlock blur

₹4.2 L/yr - ₹9.3 L/yr

Senior Specialist
82 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Specialist
79 salaries
unlock blur

₹2.5 L/yr - ₹7.9 L/yr

Explore more salaries
Compare LogixHealth with

Markets and Markets

3.1
Compare

Ascent Business Solutions

3.3
Compare

Coronis Health

3.7
Compare

Quintessence Business Solutions & Services

4.0
Compare
write
Share an Interview