Upload Button Icon Add office photos

Filter interviews by

TSMT Technology India Interview Questions and Answers

Updated 18 Mar 2025

TSMT Technology India Interview Experiences

Popular Designations

4 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. What are the basic concepts of SMT flow and the names of SMT components?
  • Ans. 

    Basic concepts of SMT flow and names of SMT components

    • Basic concepts of SMT flow include solder paste application, component placement, solder reflow, and inspection

    • SMT components include resistors, capacitors, diodes, transistors, integrated circuits, and connectors

    • Examples of SMT components: 0402 resistor, SOT-23 transistor, QFN IC, and USB connector

  • Answered by AI

Equipment Engineer Interview Questions asked at other Companies

Q1. What are the basic concepts of SMT flow and the names of SMT components?
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 18 Mar 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-
  • Q1. Any one your choice
  • Q2. Ems industry questions
  • Q3. FAINAL quality question and line leader questions

I applied via Approached by Company and was interviewed in Apr 2022. 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 - HR 

(2 Questions)

  • Q1. About your experience
  • Q2. Did you know about the role

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic for anything
All questions about your skills & experience

Quality Controller Interview Questions asked at other Companies

Q1. What is chemistry? What is difference between organic and inorganic chemistry
View answer (3)

I applied via Campus Placement and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Ms Excel basic of accounts

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was 2 rounds first round self introduction and the second one technical one but I was a bit nervous because the question were tricky.

Accounts & Finance Executive Interview Questions asked at other Companies

Q1. What is TDS? Describe section 192 C of TDS.
View answer (1)

TSMT Technology India interview questions for popular designations

 Quality Controller

 (1)

 Accounts & Finance Executive

 (1)

 Equipment Engineer

 (1)

Jobs at TSMT Technology India

View all

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. How do you rate yourself in c?

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

This was an online coding round where I had 2 questions to solve under 75 minutes. Both the coding questions were of Medium to Hard level of difficulty.

  • Q1. 

    Smallest Window Problem Statement

    Given two strings, S and X, your task is to find the smallest substring in S that contains all the characters present in X.

    Example:

    Input:
    S = "abdd"
    X = "bd"
    Output:
    ...
  • Ans. 

    Find the smallest substring in S that contains all characters in X.

    • Use a sliding window approach to find the smallest substring in S that contains all characters in X.

    • Keep track of the characters in X using a hashmap.

    • Move the window by adjusting the start and end pointers until all characters in X are found.

    • Return the smallest substring encountered.

  • Answered by AI
  • Q2. 

    K - Sum Path In A Binary Tree

    Given a binary tree where each node contains an integer value, and a value 'K', your task is to find all the paths in the binary tree such that the sum of the node values in ...

  • Ans. 

    Find all paths in a binary tree where the sum of node values equals a given value 'K'.

    • Traverse the binary tree using DFS and keep track of the current path and its sum.

    • At each node, check if the current sum equals 'K' and add the path to the result.

    • Continue traversal to the left and right child nodes recursively.

    • Return the list of paths that sum up to 'K'.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 questions of DS/Algo to solve under 60 minutes and 2 questions related to Operating Systems.

  • Q1. 

    Validate Partial Binary Search Tree (BST) Problem Statement

    You are provided with a binary tree containing 'N' nodes. Your task is to determine if this tree is a Partial Binary Search Tree (BST). Return t...

  • Ans. 

    Validate if a binary tree is a Partial Binary Search Tree (BST) by checking if each node's left subtree contains nodes with data less than or equal to the node's data, and each node's right subtree contains nodes with data greater than or equal to the node's data.

    • Check if each node's left subtree follows BST property (data <= node's data) and right subtree follows BST property (data >= node's data)

    • Recursively che...

  • Answered by AI
  • Q2. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Find the length of the longest strictly increasing subsequence in an array of integers.

    • Use dynamic programming to solve this problem efficiently.

    • Initialize an array to store the length of the longest increasing subsequence ending at each index.

    • Iterate through the array and update the length of the longest increasing subsequence for each element.

    • Return the maximum value in the array as the result.

  • Answered by AI
  • Q3. Can you define process and threads in operating systems?
  • Ans. 

    Processes are instances of a program in execution, while threads are lightweight processes within a process.

    • A process is a program in execution, with its own memory space and resources.

    • Threads are lightweight processes within a process, sharing the same memory space and resources.

    • Processes are independent of each other, while threads within the same process can communicate and share data.

    • Example: A web browser running ...

  • Answered by AI
  • Q4. What are the different types of semaphores?
  • Ans. 

    Different types of semaphores include binary semaphores, counting semaphores, and mutex semaphores.

    • Binary semaphores: Can only have two states - 0 or 1. Used for mutual exclusion.

    • Counting semaphores: Can have multiple states. Used for managing resources with limited capacity.

    • Mutex semaphores: Similar to binary semaphores but with additional features like priority inheritance.

    • Named semaphores: Can be shared between proc...

  • Answered by AI
Round 3 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Hard

In this round, I was asked 3 coding questions out of which I had to implement the first two and for the last question I was only asked the optimal approach. The main challenge in this round was to implement the first two questions in a production ready manner without any bugs and so I had to spent some time thinking about some Edge Cases which were important with respect to the question.

  • Q1. 

    Next Greater Element Problem Statement

    You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater ele...

  • Ans. 

    The task is to find the next greater element for each element in an array to its right, if no greater element exists, return -1.

    • Use a stack to keep track of elements for which the next greater element is not found yet.

    • Iterate through the array from right to left and pop elements from the stack until a greater element is found.

    • Store the next greater element for each element in a separate array.

    • If the stack is empty afte...

  • Answered by AI
  • Q2. 

    Power Set Generation

    Given a sorted array of 'N' integers, your task is to generate the power set for this array. Each subset of this power set should be individually sorted.

    A power set of a set 'ARR' i...

  • Ans. 

    Generate power set of a sorted array of integers with individually sorted subsets.

    • Use recursion to generate all possible subsets by including or excluding each element in the array.

    • Sort each subset before adding it to the power set.

    • Handle base case when all elements have been considered to add the subset to the power set.

  • Answered by AI
  • Q3. 

    Counting Sort Problem Statement

    Ninja is learning about sorting algorithms, specifically those that do not rely on comparisons. Can you help Ninja implement the counting sort algorithm?

    Example:

    Input:
    ...
  • Ans. 

    Implement counting sort algorithm to sort an array of integers without comparisons.

    • Count the frequency of each element in the input array.

    • Create a prefix sum array to determine the position of each element in the sorted array.

    • Iterate through the input array and place each element in its correct position based on the prefix sum array.

    • Time complexity of counting sort is O(n+k), where n is the number of elements and k is

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACadence Design Systems interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, DBMS, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Signal and power integrity question

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about package design also

Interview Questionnaire 

2 Questions

  • Q1. Please go through the basics questions and programs.
  • Q2. C#, SQL, Html, angular, asp.net, asp.net mvc basic questions

I appeared for an interview before Sep 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Its a zoom call interview which lasted for 45 minutes. initially there are two panel members in which one is very targetting at me. They asked me different type of questions like jumping from DSA to project then to python then again java. Its a mixed combo pack type interview. for each and every question they asked me the real time example. The discussion on my project lasted for 15-20 mins.

  • Q1. 

    Count Set Bits Problem Statement

    Given a positive integer N, compute the total number of '1's in the binary representation of all numbers from 1 to N. Return this count modulo 1e9+7 because the result can...

  • Ans. 

    Count the total number of set bits in the binary representation of numbers from 1 to N modulo 1e9+7.

    • Use bitwise operations to count the set bits in each number from 1 to N.

    • Keep track of the total set bits and return the result modulo 1e9+7.

    • Optimize the solution to handle large values of N efficiently.

    • Consider using dynamic programming or precomputing values for faster computation.

  • Answered by AI
Round 2 - Video Call 

Round duration - 30 mins
Round difficulty - Easy

This round was a zoom interview. The interview started with my brief introduction. This time the interview was more interested in my hobbies and passions. He asked me what do you do to keep yourself updated with the latest technology trends?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 8CGPAMicron Technology interview preparation:Topics to prepare for the interview - Apptitude, C, Java, Data Structures and Algorithms, DBMSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do participate in all the coding contests, long challenges held by codechef, codeforces
Tip 2 : Practice all kinds of problems on leetcode, gfg, coding ninjas
Tip 3 : When you are writing a written exam for a particular company, make sure you get to know about the company in detail.

Application resume tips for other job seekers

Tip 1 : Make your resume short and sweet(mostly 1 page, max 2 pages) is preferred.
Tip 2 : Make sure your resume is crisp rather than descriptive
Tip 3 : Do not lie on your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Verilog n digital

Interview Preparation Tips

Interview preparation tips for other job seekers - It's quite good. Had asked about microprocessor also

TSMT Technology India Interview FAQs

How many rounds are there in TSMT Technology India interview?
TSMT Technology India interview process usually has 1-2 rounds. The most common rounds in the TSMT Technology India interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for TSMT Technology India 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 TSMT Technology India. The most common topics and skills that interviewers at TSMT Technology India expect are Production Engineering, Accountancy, Accounting, Accounts Handling and Assembly Planning.
What are the top questions asked in TSMT Technology India interview?

Some of the top questions asked at the TSMT Technology India interview -

  1. What are the basic concepts of SMT flow and the names of SMT componen...read more
  2. FAINAL quality question and line leader questi...read more
  3. Ms Excel basic of accou...read more

Tell us how to improve this page.

TSMT Technology India Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 256 Interviews
Intel Interview Questions
4.2
 • 215 Interviews
Texas Instruments Interview Questions
4.0
 • 120 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Molex Interview Questions
3.9
 • 55 Interviews
View all

Fast track your campus placements

View all

TSMT Technology India Reviews and Ratings

based on 84 reviews

3.2/5

Rating in categories

3.3

Skill development

2.9

Work-life balance

2.1

Salary

2.9

Job security

2.5

Company culture

2.9

Promotions

2.8

Work satisfaction

Explore 84 Reviews and Ratings
ARTICLED CLERK

Kolkata,

Mumbai

+5

0-1 Yrs

Not Disclosed

SENIOR MANAGER AUDIT AND ASSURANCE

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

ASSISTANT MANAGER INDIRECT TAX

Bangalore / Bengaluru

2-3 Yrs

Not Disclosed

Explore more jobs
Technician
46 salaries
unlock blur

₹1 L/yr - ₹2.9 L/yr

Team Lead
26 salaries
unlock blur

₹1.1 L/yr - ₹3.5 L/yr

Junior Engineer
18 salaries
unlock blur

₹1.6 L/yr - ₹3.2 L/yr

SMT Technician
15 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

Debug Technician
11 salaries
unlock blur

₹1.5 L/yr - ₹2.8 L/yr

Explore more salaries
Compare TSMT Technology India with

Qualcomm

3.8
Compare

Intel

4.2
Compare

Apar Industries

4.1
Compare

TDK India Private Limited

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