Legato Health Technologies interview experience Real time questions & tips from candidates to crack your interview

Associate Software Engineer

Legato Health Technologies
upvote
share-icon
1 rounds | 33 Coding problems

Interview preparation journey

expand-icon
Application story
I didn’t apply individually, as the entire application process was managed by the campus management team. They coordinated everything, from submitting applications to scheduling interviews. Our role was to focus on training, preparation, and clearing the interview stage, while the campus team handled the rest seamlessly.
Preparation
Duration: 1 month
Topics: C, Java, Python, HTML, CSS, JavaScript, React, SQL, Networking, DBMS
Tip
Tip

Tip 1: Strengthen Problem-Solving Skills – Focus on understanding patterns and breaking problems into smaller steps before jumping into code.

Tip 2: Revise Core Concepts Regularly – Revisit data structures, algorithms, OOP, and SQL to keep your fundamentals sharp.

Tip 3: Learn from Mistakes – Treat errors as stepping stones, not setbacks.

Application process
Where: Campus
Eligibility: Above 7 CGPA, (Salary Package: 4 LPA)
Resume Tip
Resume tip

Tip 1: Line Summary – State what you do and the value you bring.

Tip 2: Bullet Achievements – Start each point with action verbs like Developed, Optimized, Delivered.

Tip 3: Keywords – Use relevant terms from job postings. Recruiters and ATS systems rely on these to filter candidates.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration120 minutes
Interview date25 Jul 2022
Coding problem33

1. Puzzle

Choose the correct synonym of "Meticulous".

A) Careless
B) Precise
C) Aggressive
D) Casual

2. Puzzle

She insisted ___ completing the task before leaving.
A) for
B) on
C) in
D) at

3. Puzzle

Identify the grammatically correct sentence:

A) Each of the students have submitted their assignment.
B) Each of the students has submitted their assignment.
C) Each of the students have submitted his assignment.
D) Each of the students has submitted his assignment.

4. Puzzle

Choose the correct meaning of the idiom:

"Hit the nail on the head"
A) To make a mistake
B) To be exactly correct
C) To work hard
D) To ignore something

5. Puzzle

If I would have known about the meeting, I would have attended it.


A) If I would have known
B) about the meeting
C) I would have attended it
D) No error

6. Puzzle

Number Series:

2, 6, 12, 20, 30, ?
A) 36
B) 40
C) 42
D) 44

7. Puzzle

A is the brother of B. C is the mother of B. D is the father of A.
How is C related to D?


A) Sister
B) Wife
C) Mother
D) Daughter

8. Puzzle

If CAT = 24 and DOG = 26, what is BAT?


A) 21
B) 22
C) 23
D) 24

9. Puzzle

A person walks 5 km north, then 3 km east, then 5 km south.
How far is he from the starting point?


A) 3 km
B) 5 km
C) 8 km
D) 10 km

10. Puzzle

Statement: All programmers are logical thinkers.
Conclusion: Some logical thinkers are programmers.

A) True
B) False
C) Cannot be determined
D) None

11. Puzzle

If 20% of a number is 50, what is the number?


A) 200
B) 250
C) 300
D) 150

12. Puzzle

A train 200m long passes a pole in 10 seconds. What is its speed?


A) 72 km/hr
B) 60 km/hr
C) 50 km/hr
D) 80 km/hr

13. Puzzle

Simple Interest on ₹5000 at 10% per annum for 2 years = ?
A) 1000
B) 1200
C) 900
D) 800

14. Puzzle

What is the probability of getting a tail when tossing a fair coin twice?


A) 1/2
B) 1/4
C) 3/4
D) 1

15. Puzzle

If A can complete a task in 10 days and B in 15 days, together they finish in:


A) 5 days
B) 6 days
C) 7 days
D) 12 days

16. Binary Search

Time Complexity of Binary Search?

A) O(n)
B) O(n log n)
C) O(log n)
D) O(1)

17. OOPs Concept

Which is NOT a pillar of OOP?

A) Inheritance
B) Encapsulation
C) Polymorphism
D) Compilation

18. DBMS

Which SQL clause is used to filter grouped records?

A) WHERE
B) GROUP BY
C) HAVING
D) ORDER BY

19. DSA Basics

Which data structure uses FIFO?

A) Stack
B) Queue
C) Tree
D) Graph

20. Java Basics

Which keyword is used to inherit a class in Java?

A) implement
B) extends
C) inherit
D) include

21. Time Complexity

What is the time complexity of the following code?

for(int i = 1; i < n; i *= 2) {
for(int j = 0; j < n; j++) {
printf("%d", j);
   }
}

A) O(n)
B) O(n log n)
C) O(n²)
D) O(log n)

22. Polymorphism Concept

Which scenario best represents runtime polymorphism?

A) Method overloading
B) Method overriding
C) Constructor overloading
D) Static binding

23. DBMS

What will be the output?
SELECT COUNT(*)
FROM Employees
WHERE Salary > 50000 OR Salary < 50000;

A) Only employees earning > 50000
B) Only employees earning < 50000
C) All employees except those earning exactly 50000
D) All employees

24. Data Structures

Which data structure is most suitable for implementing undo/redo functionality?

A) Queue
B) Stack
C) Linked List
D) Tree

25. DBMS

Which normal form removes transitive dependency?

A) 1NF
B) 2NF
C) 3NF
D) BCNF

26. Puzzle

If the ratio of ages of A and B is 4:5 and after 6 years it becomes 5:6, what is A’s present age?

A) 24
B) 30
C) 18
D) 20

27. Puzzle

Two dice are thrown. What is the probability that the sum is 8?

A) 5/36
B) 1/6
C) 6/36
D) 1/9

28. Puzzle

Five people, P, Q, R, S,T sit in a row.
P sits next to Q.
R sits at one end.
T is not next to R.

Who must sit in the middle?

A) P
B) Q
C) S
D) Cannot be determined

29. Puzzle

Choose the correct sentence:

A) The data are accurate.
B) The data is accurate.
C) The datas are accurate.
D) The datas is accurate.

30. Puzzle

Choose the correct inference:

Statement:
"All high-performing developers practice coding daily."

Which must be true?

A) Anyone who practices daily is high-performing
B) Some high-performing developers may not practice daily
C) Every high-performing developer practices daily
D) All developers practice daily

31. First non repeating character

Easy
15m average time
80% success
0/40
Asked in companies
QuikrHCL TechnologiesMakeMyTrip

Ninja is now bored with numbers and is now playing with characters but hates when he gets repeated characters. Ninja is provided a string, and he wants to return the first unique character in the string.The string will contain characters only from the English alphabet set, i.e., ('A' - 'Z') and ('a' - 'z'). If there is no non-repeating character, print the first character of the string. If there is no non-repeating character, return the first character of the string.

Try solving now

32. Anagram Pairs

Moderate
30m average time
60% success
0/80
Asked in companies
AdobeThought WorksHSBC

You are given two strings 'str1' and 'str1'.


You have to tell whether these strings form an anagram pair or not.


The strings form an anagram pair if the letters of one string can be rearranged to form another string.

Pre-requisites:

Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams. 

Other examples include:

'triangle' and 'integral'
'listen' and 'silent'
Note:
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct. 
Try solving now

33. Maximum Subarray Sum

Moderate
0/80
Asked in companies
IntuitAmazonOracle

You are given an array/list ARR consisting of N integers. Your task is to find the maximum possible sum of a non-empty subarray(contiguous) of this array.

Note: An array C is a subarray of array D if it can be obtained by deletion of several elements(possibly zero) from the beginning and the end of array D.

For e.g.- All the non-empty subarrays of array [1,2,3] are [1], [2], [3], [1,2], [2,3], [1,2,3].

Try solving now

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8962 views
0 comments
0 upvotes
Analytics Consultant
3 rounds | 10 problems
Interviewed by ZS
975 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3502 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
2763 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Ernst & Young (EY)
2775 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 15 problems
Interviewed by Ernst & Young (EY)
2405 views
0 comments
0 upvotes
company logo
Associate Software Engineer
4 rounds | 9 problems
Interviewed by NCR Corporation
1513 views
0 comments
0 upvotes