Upload Button Icon Add office photos

TECHB

Compare button icon Compare button icon Compare

Filter interviews by

TECHB Technical Trainer Interview Questions and Answers

Updated 20 Feb 2022

TECHB Technical Trainer Interview Experiences

1 interview found

Technical Trainer Interview Questions & Answers

user image Dharmendra Singh

posted on 20 Feb 2022

I applied via Approached by Company

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 

(1 Question)

  • Q1. Question related to Basic electronic,basic circuits design, sensors, microcontroller, raspberry pi, wifi module, Bluetooth etc..
Round 3 - Coding Test 

Error finding in open source code, manage library, fix error and write code using basic algorithm, Arduino ide, processing

Round 4 - HR 

(6 Questions)

  • Q1. Why should we hire you?
  • Q2. What are your salary expectations?
  • Q3. Share details of your previous job.
  • Q4. Where do you see yourself in 5 years?
  • Q5. Tell me about yourself.
  • Q6. What is your family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - In today's time it is necessary to become expert in any one skill.

Interview questions from similar companies

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

I applied via Walk-in and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Brief about yourself
  • Q2. Your dreams for the company
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Where you want to see yourself in 3 years Down the line?
  • Ans. 

    In 3 years, I see myself as a senior Technical Support Engineer leading a team and implementing innovative solutions.

    • Advancing to a senior role within the Technical Support team

    • Leading and mentoring a team of junior engineers

    • Implementing new technologies and solutions to improve customer support

    • Attending relevant training and certifications to enhance skills

    • Contributing to the overall growth and success of the company

  • Answered by AI
  • Q2. Any technical certification/ diploma software's that is used in your company?
  • Ans. 

    Yes, we use certifications like CompTIA A+, Microsoft Certified Solutions Expert (MCSE), and Cisco Certified Network Associate (CCNA) in our company.

    • CompTIA A+

    • Microsoft Certified Solutions Expert (MCSE)

    • Cisco Certified Network Associate (CCNA)

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Why you leave current job
  • Q2. Why should we hire you
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What is your stength
  • Ans. 

    My strength lies in my ability to quickly learn new technologies and adapt to changing environments.

    • Quick learner

    • Adaptable to change

    • Strong problem-solving skills

    • Excellent communication skills

    • Team player

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good environment

I applied via Referral and was interviewed in Dec 2021. There were 4 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 

(1 Question)

  • Q1. Question put behalf on mentioned technology in resume
Round 3 - Technical 

(1 Question)

  • Q1. Question put ob Previous experience related
Round 4 - HR 

(1 Question)

  • Q1. Hr policies regarding

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round consist of coding as well as mcq questions

  • Q1. 

    Minimum Cost to Destination

    You are given an NxM matrix consisting of '0's and '1's. A '1' signifies that the cell is accessible, whereas a '0' indicates that the cell is blocked. Your task is to compute ...

  • Ans. Backtracking

    Maintain a visited array and try to explore all the possibilities with the help of backtracking.

    1. Start with (0, 0) and mark it as visited and try to move in all 4 directions.
    2. Say at any point we are at (i, j) then the cost of reaching (x,y) will be the minimum of these four cases.
      1. Option 1 -  Left: cost of reaching from (i, j-1)
      2. Option 2 - Right: cost of reaching from (i, j+1)
      3. Option 3 - Up: 1 + cost of rea...
  • Answered Anonymously
  • Q2. 

    Maximum of All Subarrays of Size k

    Given an array of 'N' non-negative integers and an integer 'K', your task is to find the maximum elements for each subarray of size 'K'.

    Input:

    The first line contains...
  • Ans. Brute force approach
    • The Idea behind this brute force approach is to consider each subarray of size K by fixing a point i in the array and then consider all the points after it till we have considered K elements from the starting point i and finding the maximum element in it and then storing it.
    • Now, run a loop(say, loop variable i) till (N-K) elements of the array:
      • Run a nested loop(say, loop variable j) through the elem...
  • Answered Anonymously
Round 2 - Face to Face 

(3 Questions)

Round duration - 36 minutes
Round difficulty - Easy

  • Q1. 

    Convert Min Heap to Max Heap Problem Statement

    Given an array representation of a min-heap of size 'n', your task is to convert this array into a max-heap.

    Input:

    The first line of input contains an int...
  • Ans. Sorting Approach

    The main idea is that when an array is sorted in descending order it becomes max heap as for every ‘i’ from i=0 to n/2 it is greater than equal to arr[2*i+1] and arr[2*i+2].

    Space Complexity: O(1)Explanation:

    O(1)

     

    We are using constant space to solve this.

    Time Complexity: O(nlogn)Explanation:

    O(n*log(n)), where n is the size of the array.

     

    Sorting an array takes O(n*log(n)) time complexity.


    Pytho...
  • Answered Anonymously
  • Q2. 

    Sum Between Zeroes Problem Statement

    Given a singly linked list containing a series of integers separated by the integer '0', modify the list by merging nodes between two '0's into a single node. This mer...

  • Ans. Two Pointer Approach

    Let us initialize two pointers, newHead and newTail, with NULL (These will be the head and tail of the final list). Now traverse the given list. Ignore the first zero. Now, as you encounter non-zero nodes, add their values in a variable called ‘sum’. As soon as you encounter a node with data 0, change that node's value to ‘sum’, and

    1. If newHead is NULL, this node becomes the new head and tail of the l...
  • Answered Anonymously
  • Q3. 

    Snake and Ladder Problem Statement

    Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, f...

  • Ans. BFS

    We will use Breadth-First Search to find the shortest path from cellNumber 1 to cellNumber N*N.

    1. We will maintain a queue of cellNumber where the front of the queue will always contain a cell which can be reached by minimum dice throw from starting cell (cellNumber = 1).
    2. Create a minDiceThrow array of size N*N initialise it with the maximum value (INT_MAX)
    3. Start with pushing cellNumber 1 and updating minDiceThrow[1] = 0...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Trainee Technology in HyderabadEligibility criteriaNoTravClan interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Networking, Database Management System, Operating System, Time Complexity, Compiler design, Machine Learning and Artificial intelligence techniques , recursion with backtracking problems and also graph-related algorithms problemsTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : I practiced a lot of problems related to Data structures on the Coding ninjas platform and other coding platforms.
Tip 2 : If you are stuck somewhere in a problem and want to see reference, first, try to understand the algorithm and then move on to code. 
Tip 3 : Just see the algorithm that is how to approach first and don't try to understand from the code right off the bat, code has finer implementation variation that can be done on your own if you are clear with the algorithm. Also for big product companies, prepare enough problems of graphs and trees as these are the most important topics for interviews.

Application resume tips for other job seekers

Tip 1 : Mention a good level of projects in your resume, and also give a brief detail about each and every project.
Tip 2 : Have at least 1 or 2 good projects from which you know everything involved in the project.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Brief about yourself
  • Q2. Your dreams for the company
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How many problems /tickets you face on daily basis?
  • Q2. No of desktop and laptop with make and model name?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 2 pointer array
Round 2 - HR 

(1 Question)

  • Q1. Was more focused on communication skills

TECHB Interview FAQs

How many rounds are there in TECHB Technical Trainer interview?
TECHB interview process usually has 4 rounds. The most common rounds in the TECHB interview process are Resume Shortlist, Technical and Coding Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.9
 • 153 Interviews
HCL Infosystems Interview Questions
3.9
 • 141 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
Data Entry Interview Questions
4.1
 • 96 Interviews
HyScaler Interview Questions
4.5
 • 90 Interviews
CapitalOne Interview Questions
3.7
 • 78 Interviews
View all

TECHB Technical Trainer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

2.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Trainer
3 salaries
unlock blur

₹1.2 L/yr - ₹1.8 L/yr

Junior Accountant
3 salaries
unlock blur

₹2 L/yr - ₹2 L/yr

Back Office Coordinator
3 salaries
unlock blur

₹1.5 L/yr - ₹1.6 L/yr

Technical Trainer
3 salaries
unlock blur

₹2.2 L/yr - ₹6.3 L/yr

Service Design Engineer
3 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Explore more salaries
Compare TECHB with

Marpu Foundation

4.8
Compare

Huawei Technologies

4.0
Compare

HCL Infosystems

3.9
Compare

Z X Learning

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