Upload Button Icon Add office photos

Filter interviews by

TBM Technologies Interview Questions, Process, and Tips for Experienced

Updated 21 Nov 2024

Top TBM Technologies Interview Questions and Answers for Experienced

View all 7 questions

TBM Technologies Interview Experiences for Experienced

Popular Designations

2 interviews found

I applied via Indeed and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. What is the lambda function?
  • Ans. 

    A lambda function is a small anonymous function that can be used as a parameter for another function.

    • Lambda functions are often used in functional programming languages.

    • They are also commonly used in event-driven programming and serverless computing.

    • Lambda functions can be used to perform a single task or to create more complex functions.

    • They are often used to process data or to perform calculations.

    • Lambda functions ar...

  • Answered by AI
  • Q2. What is a variable?
  • Ans. 

    A variable is a named storage location in a computer's memory that holds a value.

    • Variables are used to store data in a program.

    • They can hold different types of data such as numbers, strings, and booleans.

    • Variables can be assigned a value and that value can be changed throughout the program.

    • They are declared using a data type and a name, such as int age;

    • Variables are essential for programming as they allow for dynamic a

  • Answered by AI
  • Q3. Difference b/w list and tuple.
  • Ans. 

    List is mutable while tuple is immutable.

    • List can be modified while tuple cannot be modified.

    • List uses square brackets [] while tuple uses parentheses ().

    • List is used for homogeneous data while tuple is used for heterogeneous data.

    • List is slower than tuple in terms of performance.

    • Example of list: [1, 2, 3] and example of tuple: (1, 'a', True)

  • Answered by AI
  • Q4. Difference b/w pickling and unpickling.
  • Ans. 

    Pickling is the process of converting a Python object into a byte stream, while unpickling is the reverse process.

    • Pickling is used to serialize and store data, while unpickling is used to deserialize and retrieve data.

    • Pickling is useful for transferring data between different Python programs or storing data in a file.

    • Unpickling can raise security concerns if the data being unpickled is from an untrusted source.

    • Python's...

  • Answered by AI
  • Q5. Difference b/w range and xrange.
  • Ans. 

    range and xrange are used to generate a sequence of numbers, but xrange is more memory efficient.

    • range generates a list of numbers in memory, while xrange generates an iterator

    • range is used in Python 3, while xrange is used in Python 2

    • xrange is more memory efficient as it generates numbers on the fly

    • range can be used with the built-in function list() to generate a list

  • Answered by AI
  • Q6. What is a decorator?
  • Ans. 

    A decorator is a design pattern that allows behavior to be added to an individual object, either statically or dynamically.

    • Decorators wrap an object to modify its behavior.

    • They provide a flexible alternative to subclassing for extending functionality.

    • Python has built-in support for decorators, which are used extensively in frameworks like Flask and Django.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview questions are very good that he asked.

Skills evaluated in this interview

Top TBM Technologies Backend Developer Interview Questions and Answers

Q1. What is the lambda function?
View answer (1)

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)

I applied via Naukri.com and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to adjust gst in gst portal
  • Ans. 

    Adjusting GST in GST portal involves logging in, selecting the relevant return, and making necessary changes.

    • Log in to the GST portal using your credentials

    • Select the relevant return for which you want to adjust GST

    • Click on the 'Amend' button to make necessary changes

    • Submit the amended return after making the changes

    • The GST portal will automatically adjust the GST amount based on the changes made

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi
Everyone
Company rules and policies not good
They deducted a one month salary as a security deposit and refund after 2 years if employee stay in 2 years otherwise employee leave it before 2 years then security deposit is not refunded they have holidays list every year if holiday list show any day holiday then they cancelled that holiday.
And they have running two companies in that company and they told u after joining u have to see 2 companies not a one company.
So I personally advice to everyone
Don't join this company
That's my personal experience

Senior Accountant Interview Questions asked at other Companies

Q1. Tell me about your self tax,
View answer (22)

Jobs at TBM Technologies

View all

Interview questions from similar companies

I applied via Indeed and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic php and array functions
  • Q2. Mysql basic, views, triggers

Interview Preparation Tips

Interview preparation tips for other job seekers - Array related question and basic php mysql

I applied via Company Website and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Php basic and array functions
  • Q2. Mysql basic,views,triggers

Interview Preparation Tips

Interview preparation tips for other job seekers - Average

I applied via Campus Placement and was interviewed before Sep 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. Questions on IOT and related
Round 3 - Coding Test 

Questions mainly from Linked list.

Round 4 - Technical 

(1 Question)

  • Q1. Basically coding round, with basic questions from arrays. One needs to have good communication skills to explain to interviewers.

Interview Preparation Tips

Topics to prepare for VassarLabs Software Engineer interview:
  • DSA
  • IOT
Interview preparation tips for other job seekers - It is an startup, you need to ready for any questions.

Interview Questionnaire 

1 Question

  • Q1. Strengths, skills, basic introduction.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. 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 - Aptitude Test 

Basic java questions

Round 3 - Technical 

(2 Questions)

  • Q1. Explain Linked list implementation and stack
  • Ans. 

    Linked list is a data structure where each element points to the next element. Stack is a data structure that follows Last In First Out (LIFO) principle.

    • Linked list implementation involves creating nodes with data and a pointer to the next node.

    • Stack implementation involves pushing elements onto the stack and popping them off in reverse order.

    • Example: Linked list - 1 -> 2 -> 3 -> NULL, Stack - push(1), push(2), push(3)

  • Answered by AI
  • Q2. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn java and dsa

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 3 dsa problem asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Covers basics aps around 15 question

Round 2 - Coding Test 

DSA based questions from leetcode easy and medium

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a data analyst with a strong background in statistics and data visualization.

    • Graduated with a degree in Statistics

    • Proficient in programming languages like Python and R

    • Experience in analyzing large datasets and creating data visualizations

    • Strong problem-solving skills

  • Answered by AI

TBM Technologies Interview FAQs

How many rounds are there in TBM Technologies interview for experienced candidates?
TBM Technologies interview process for experienced candidates usually has 1 rounds. The most common rounds in the TBM Technologies interview process for experienced candidates are One-on-one Round.
How to prepare for TBM Technologies interview for experienced candidates?
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 TBM Technologies. The most common topics and skills that interviewers at TBM Technologies expect are Python, B2B Sales, Corporate, Django and Java.
What are the top questions asked in TBM Technologies interview for experienced candidates?

Some of the top questions asked at the TBM Technologies interview for experienced candidates -

  1. How to adjust gst in gst port...read more
  2. What is the lambda functi...read more
  3. what is a decorat...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Icl Fincorp Interview Questions
3.2
 • 18 Interviews
Neural IT Interview Questions
2.8
 • 14 Interviews
VassarLabs Interview Questions
3.0
 • 13 Interviews
Sonata Finance Interview Questions
3.9
 • 13 Interviews
View all

TBM Technologies Reviews and Ratings

based on 11 reviews

2.8/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

2.6

Salary

2.6

Job security

2.9

Company culture

2.6

Promotions

2.7

Work satisfaction

Explore 11 Reviews and Ratings
Management

New Delhi

2-7 Yrs

Not Disclosed

Management

New Delhi

2-5 Yrs

Not Disclosed

Management

New Delhi

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
5 salaries
unlock blur

₹2.5 L/yr - ₹3 L/yr

Web Developer
5 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Software Developer
4 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Data Analyst
4 salaries
unlock blur

₹2.3 L/yr - ₹2.6 L/yr

HR Executive
4 salaries
unlock blur

₹2.5 L/yr - ₹2.6 L/yr

Explore more salaries
Compare TBM Technologies with

Karvy Financial Services

3.8
Compare

Reliance Money

3.7
Compare

Sonata Finance

3.9
Compare

Incrementors Web Solutions

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