Upload Button Icon Add office photos

Filter interviews by

Thermo Systems India Deputy Manager Interview Questions and Answers

Updated 30 Nov 2024

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About company

Interview Preparation Tips

Interview preparation tips for other job seekers - Its nice to share that interview was happened in 4 modes

Everything is fine and company culture is very good.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About heat treatment Types of gear and uses Day to day work profile Knowledge about rolling mill and furnace Problem solving skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Must have knowledge about what they are writing in their resume.

Interview Questionnaire 

2 Questions

  • Q1. UVM AXI Development
  • Q2. Real time Hands on

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent interview done

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. C Programming
  • Q2. Data structures
  • Q3. Os concepts
  • Q4. Communication protocols

Interview Preparation Tips

Interview preparation tips for other job seekers - 1 written test, 2 technical round and next HR ROUND

Interview Questionnaire 

2 Questions

  • Q1. 1. Basic testing questions
  • Q2. 2. Question related to API and sql

I applied via Naukri.com and was interviewed before Sep 2021. 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 - Coding Test 

C programs and linked list related programs. In c mainly focus on strings and arrays

Round 3 - One-on-one 

(2 Questions)

  • Q1. C concepts like storage classes, pointers and protocols like spi, i2c
  • Q2. Explain about Extern What's the difference between static and extern
  • Ans. 

    Extern and static are storage classes in C programming language.

    • Extern is used to declare a variable or function that is defined in another file.

    • Static is used to declare a variable or function that is only accessible within the same file.

    • Extern variables have global scope while static variables have local scope.

    • Extern functions can be used in other files while static functions cannot be used outside the file they are

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well mainy focus on coding in c string, Pointers, Structures and linked list.

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 30 minutes
Round difficulty - Easy

  • Q1. How do you search for a node in a linked list?
  • Ans. 

    To search for a node in a linked list, iterate through the list and compare each node's value with the target value.

    • Start at the head of the linked list

    • Iterate through each node by following the 'next' pointer

    • Compare the value of each node with the target value

    • Return the node if found, otherwise return null

  • Answered by AI
  • Q2. How do you detect a loop in a linked list?
  • Ans. 

    To detect a loop in a linked list, we can use Floyd's Cycle Detection Algorithm.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If there is a loop, the two pointers will eventually meet.

    • Alternatively, we can use a hash set to store visited nodes and check for duplicates.

  • Answered by AI
  • Q3. Implement a stack using a singly linked list.
  • Ans. 

    Implement a stack using a singly linked list

    • Create a Node class with data and next pointer

    • Create a Stack class with top pointer pointing to the top of the stack

    • Implement push, pop, and peek operations by manipulating the linked list

    • Example: Node class - Node { int data; Node next; }

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. What is the top view of a binary tree?
  • Ans. 

    The top view of a binary tree shows the nodes visible from the top when looking down from the root node.

    • The top view of a binary tree is the set of nodes visible from the top when looking down from the root node.

    • Nodes at the same horizontal distance from the root are considered at the same level in the top view.

    • If multiple nodes are at the same horizontal distance, only the topmost node at that level is included in the...

  • Answered by AI
  • Q2. Explain the process of deleting a node from a linked list, covering all possible cases.
  • Ans. 

    Deleting a node from a linked list involves updating pointers to maintain the list's integrity.

    • Identify the node to be deleted by traversing the list

    • Update the previous node's next pointer to skip the node to be deleted

    • Free the memory allocated to the node to be deleted

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Inderprastha Engineering College. I applied for the job as SDE - 1 in NoidaEligibility criteriaminimum 70 %Cadence Design Systems interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Object-Oriented Programming, System DesignTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Do practice a lot of questions on linked list and stacks as these are two most important data structures asked in the interview. Also, try to implement it yourself without seeing the solution. Also prepare for Computer Science subjects like Operating System, Database Management System, Computer Networks, etc. I prepared them through Coding Ninjas notes which were simpler and easy to understand. 

Application resume tips for other job seekers

Keep your resume short and up to mark and check spellings before submitting it for the interview process.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Feb 2017.

Interview Questionnaire 

7 Questions

  • Q1. What is a malloc function and where is it used and how is it different from new?
  • Ans. 

    malloc is a function in C that dynamically allocates memory on the heap. It is used to allocate memory for variables or data structures.

    • malloc is used in C programming language.

    • It is used to allocate memory on the heap.

    • malloc is different from 'new' in C++ as it does not call constructors for objects.

  • Answered by AI
  • Q2. What is the difference between C++ and Objective C and where will you use it?
  • Ans. 

    C++ is a general-purpose programming language while Objective C is a superset of C used for iOS and macOS development.

    • C++ is widely used for developing applications, games, and system software.

    • Objective C is mainly used for iOS and macOS development.

    • C++ supports both procedural and object-oriented programming paradigms.

    • Objective C is an object-oriented language with dynamic runtime features.

    • C++ has a larger community a...

  • Answered by AI
  • Q3. What is the difference between class container and class composition?
  • Ans. 

    Class container is a class that holds objects of other classes, while class composition is a way to combine multiple classes to create a new class.

    • Class container holds objects of other classes, acting as a collection or container.

    • Class composition combines multiple classes to create a new class with its own behavior and attributes.

    • In class container, the objects are typically stored in a data structure like an array o...

  • Answered by AI
  • Q4. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the t...
  • Ans. 

    Divide the horses into groups of 5 and race them. Take the top 2 from each race and race them again. Finally, race the top 2 horses to determine the top 3.

    • Divide the horses into 3 groups of 5 and race them.

    • Take the top 2 horses from each race and race them again.

    • Finally, race the top 2 horses to determine the top 3.

  • Answered by AI
  • Q5. What is the most difficult problem that you have solved (during work) till now and why you think you could do so?
  • Ans. 

    Developing a real-time data processing system for a high-traffic e-commerce website

    • Implemented a distributed system architecture to handle large volumes of data

    • Optimized algorithms for efficient data processing and storage

    • Utilized caching mechanisms to improve system performance

    • Worked closely with cross-functional teams to troubleshoot and resolve issues

    • Example: Successfully reduced data processing time by 50% by imple

  • Answered by AI
  • Q6. Why you want to change your current job?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for a more challenging role to further develop my skills

    • Interested in exploring new technologies and industries

    • Seeking better career advancement opportunities

    • Want to work in a more collaborative team environment

  • Answered by AI
  • Q7. What is the width of a tree? How will you calculate the width of the tree?
  • Ans. 

    The width of a tree is the maximum number of nodes at any level in the tree.

    • To calculate the width of a tree, we can perform a level order traversal and keep track of the maximum number of nodes at any level.

    • We can use a queue data structure to perform the level order traversal.

    • At each level, we count the number of nodes in the queue and update the maximum width if necessary.

  • Answered by AI

Interview Preparation Tips

Skills: Basic C/C++, Implementing Data Structures In C++

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Why you are leaving?
  • Q2. What is why why analysis?
  • Ans. 

    Why-Why analysis is a problem-solving technique used to identify the root cause of a problem by repeatedly asking 'why' until the underlying cause is determined.

    • Why-Why analysis is also known as the 5 Whys technique.

    • It helps to uncover the underlying causes of a problem rather than just addressing the symptoms.

    • The technique involves asking 'why' multiple times to dig deeper into the problem.

    • Each 'why' question leads to...

  • Answered by AI
  • Q3. What is 5s?
  • Ans. 

    5s is a workplace organization method that aims to improve efficiency and productivity by organizing and standardizing the workplace.

    • Sort - separate necessary items from unnecessary ones

    • Set in order - arrange necessary items in a logical manner

    • Shine - clean and inspect the workplace regularly

    • Standardize - establish procedures and guidelines for maintaining the workplace

    • Sustain - maintain the 5s system through continuou...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Your specialization must be clear.

Thermo Systems India Interview FAQs

How many rounds are there in Thermo Systems India Deputy Manager interview?
Thermo Systems India interview process usually has 1 rounds. The most common rounds in the Thermo Systems India interview process are Aptitude Test.

Tell us how to improve this page.

Thermo Systems India Deputy Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Texas Instruments Interview Questions
4.0
 • 121 Interviews
Synopsys Interview Questions
3.9
 • 89 Interviews
Molex Interview Questions
3.8
 • 55 Interviews
Lam Research Interview Questions
3.7
 • 46 Interviews
Apar Industries Interview Questions
4.1
 • 43 Interviews
View all
Thermo Systems India Deputy Manager Salary
based on 16 salaries
₹7.1 L/yr - ₹12 L/yr
6% more than the average Deputy Manager Salary in India
View more details

Thermo Systems India Deputy Manager Reviews and Ratings

based on 5 reviews

3.3/5

Rating in categories

2.9

Skill development

3.0

Work-life balance

3.1

Salary

2.9

Job security

3.0

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 5 Reviews and Ratings
Assistant Manager
28 salaries
unlock blur

₹6 L/yr - ₹10.5 L/yr

Project Manager
18 salaries
unlock blur

₹7.5 L/yr - ₹27.5 L/yr

Deputy Manager
16 salaries
unlock blur

₹7.1 L/yr - ₹12 L/yr

Senior Engineer
13 salaries
unlock blur

₹4.2 L/yr - ₹8 L/yr

Site Engineer
10 salaries
unlock blur

₹2.5 L/yr - ₹4.3 L/yr

Explore more salaries
Compare Thermo Systems India with

Apar Industries

4.1
Compare

TDK India Private Limited

3.8
Compare

Molex

3.8
Compare

Micron Technology

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