Upload Button Icon Add office photos

Filter interviews by

Thyrocare Technologies Software Developer Interview Questions and Answers

Updated 23 Nov 2024

Interview questions from similar companies

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

(2 Questions)

  • Q1. Prepare well on arrays, lists and its operations
  • Q2. Get to know well about your current project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They asked easy to medium DSA . It includes arrays, strings, recursion.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy process
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 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 

(6 Questions)

  • Q1. React hooks, Explain using code
  • Ans. 

    React hooks are functions that let you use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components

    • useState() is a hook that allows you to add state to functional components

    • useEffect() is a hook that allows you to perform side effects in functional components

    • useContext() is a hook that allows you to use the context API in functio

  • Answered by AI
  • Q2. Factory Patterns?
  • Q3. Liskov Substitution Principle
  • Ans. 

    Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Subtypes must be substitutable for their base types.

    • Derived classes must be able to replace their base classes without affecting the program's behavior.

    • Violating this principle can lead to unexpected behavior and errors in the code.

    • Example: If a program expec...

  • Answered by AI
  • Q4. Oops Concept and give examples
  • Ans. 

    Oops concept is a programming paradigm that focuses on objects and classes.

    • Oops stands for Object-Oriented Programming

    • Key concepts include inheritance, encapsulation, polymorphism, and abstraction

    • Examples: Class Car with properties like make, model, and methods like start(), stop()

    • Example: Inheritance - Class SUV extends Car and adds property numSeats

  • Answered by AI
  • Q5. JQuery - Ajax mechanisms
  • Q6. Docker and Kubernetes - Azure concepts

Skills evaluated in this interview

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

I applied via campus placement at P E S College of Engineering, Mandya and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Computer fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Technical questions of projects ,dsa
Round 3 - HR 

(2 Questions)

  • Q1. What is ur background
  • Q2. Manegarial and behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Anna University and was interviewed in Aug 2022. 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 - Coding Test 

Two Easy questions to be solved

Round 3 - Technical 

(3 Questions)

  • Q1. Some Technical based questions
  • Q2. It was amazing . Interviewer asked me to code for heap sort and asked me to explain.
  • Q3. Write a code for heap sort algorithm and explain it?
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • Heap sort works by building a binary heap from the array and then repeatedly extracting the maximum element and placing it at the end of the array.

    • The heap is maintained as a complete binary tree, where each parent node is greater than or equal to its children.

    • The time complexity of heap sort is O(n log n) and it is an in-place sor...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GE Healthcare Software Developer interview:
  • C++
  • C
  • Python
Interview preparation tips for other job seekers - Learn very well and expertise in one coding language. To be have a clear vision on theory concepts like OS, DBMS, OOPS, CN...etc.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2023. There were 5 interview rounds.

Round 1 - Coding Test 

IT was basic question from string and array

Round 2 - One-on-one 

(2 Questions)

  • Q1. Data structure question find all leaf node from tree.
  • Ans. 

    Use depth-first search to traverse the tree and identify leaf nodes.

    • Implement depth-first search algorithm to traverse the tree.

    • Identify nodes with no children as leaf nodes.

    • Store leaf nodes in an array for retrieval.

  • Answered by AI
  • Q2. Print sentence word in reverse order without using default function. eg: input:-> I live in New York. output:-> I evil ni weN kroY.
  • Ans. 

    Reverse each word in a sentence without using default function.

    • Split the sentence into words

    • Iterate through each word and reverse it

    • Join the reversed words back into a sentence

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Programming question :Fibonacci series using recursion.
  • Ans. 

    Fibonacci series using recursion is a classic programming problem where each number is the sum of the two preceding ones.

    • Define a recursive function that takes an integer n as input

    • Base case: if n is 0 or 1, return n

    • Recursive case: return the sum of the previous two Fibonacci numbers

    • Call the function recursively with n-1 and n-2 until base case is reached

  • Answered by AI
  • Q2. Programming question: Find 1st 2nd and 3rd highest from array of integer.
  • Ans. 

    Find 1st, 2nd, and 3rd highest integers from an array.

    • Sort the array in descending order.

    • Retrieve the first three elements from the sorted array.

    • Handle cases where array length is less than 3.

  • Answered by AI
Round 4 - Mangerial Round 

(1 Question)

  • Q1. They asked Puzzle
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Question on Template concept in c++
  • Q2. Questions related to string
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

C++ related aptitude test. OOPs questions.

Round 2 - Coding Test 

Questions related to linked list. Virtual functions and virtual destructor.
Reversing a LinkedIn list.

Round 3 - Technical 

(3 Questions)

  • Q1. Project related interview.
  • Q2. Which stack used?
  • Ans. 

    We primarily use the MERN stack for our web development projects.

    • MERN stack includes MongoDB, Express.js, React, and Node.js

    • MongoDB is used as the database to store data

    • Express.js is used as the backend framework for building APIs

    • React is used for building the user interface

    • Node.js is used as the server-side runtime environment

  • Answered by AI
  • Q3. How threads were handled?
  • Ans. 

    Threads are handled by creating and managing lightweight processes within a program to improve performance and responsiveness.

    • Threads are managed by the operating system or a thread library.

    • Threads share the same memory space within a process.

    • Threads can communicate with each other through shared memory or message passing.

    • Thread synchronization is important to prevent race conditions and ensure data consistency.

    • Example...

  • Answered by AI

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Oops, c#, design , .net framework
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial, projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice oops , data structures and algorithms, problem solving

Thyrocare Technologies Interview FAQs

How many rounds are there in Thyrocare Technologies Software Developer interview?
Thyrocare Technologies interview process usually has 1 rounds. The most common rounds in the Thyrocare Technologies interview process are Technical.
How to prepare for Thyrocare Technologies Software Developer 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 Thyrocare Technologies. The most common topics and skills that interviewers at Thyrocare Technologies expect are Software Development, Web Api, ASP.Net, C# and ASP.Net MVC.

Tell us how to improve this page.

Interview Questions from Similar Companies

Max Healthcare Interview Questions
4.1
 • 130 Interviews
Dr Lal PathLabs Interview Questions
4.2
 • 123 Interviews
Paras Hospital Interview Questions
4.5
 • 76 Interviews
Pacific BPO Interview Questions
3.4
 • 72 Interviews
GE Healthcare Interview Questions
4.1
 • 71 Interviews
SRL Diagnostics Interview Questions
4.1
 • 55 Interviews
Advantmed Interview Questions
3.7
 • 48 Interviews
Redcliffe Labs Interview Questions
4.4
 • 47 Interviews
View all
Thyrocare Technologies Software Developer Salary
based on 63 salaries
₹2 L/yr - ₹4 L/yr
67% less than the average Software Developer Salary in India
View more details

Thyrocare Technologies Software Developer Reviews and Ratings

based on 5 reviews

2.1/5

Rating in categories

2.7

Skill development

1.8

Work-Life balance

1.9

Salary & Benefits

1.6

Job Security

2.0

Company culture

1.6

Promotions/Appraisal

1.8

Work Satisfaction

Explore 5 Reviews and Ratings
Lab Executive
276 salaries
unlock blur

₹1.2 L/yr - ₹3.6 L/yr

Lab Technician
256 salaries
unlock blur

₹1.3 L/yr - ₹5 L/yr

Executive
212 salaries
unlock blur

₹1.8 L/yr - ₹4.2 L/yr

Business Development Executive
206 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Senior Executive
145 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Explore more salaries
Compare Thyrocare Technologies with

Metropolis Healthcare

4.1
Compare

DRJ & CO

5.0
Compare

SRL Diagnostics

4.1
Compare

Suburban Diagnostics

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview