Upload Button Icon Add office photos

TBM Technologies

Compare button icon Compare button icon Compare

Filter interviews by

TBM Technologies Interview Questions and Answers

Updated 21 Nov 2024
Popular Designations

7 Interview questions

A Backend Developer was asked
Q. What is the difference between 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

View all Backend Developer interview questions
A Backend Developer was asked
Q. What is the difference between a list and a 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)

View all Backend Developer interview questions
A Backend Developer was asked
Q. What is a 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 functio...

View all Backend Developer interview questions
A Backend Developer was asked
Q. What is the difference between 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.

  • Pyt...

View all Backend Developer interview questions
A Backend Developer was asked
Q. 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 dyna...

View all Backend Developer interview questions
A Backend Developer was asked
Q. 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.

View all Backend Developer interview questions
A Senior Accountant was asked
Q. How do you adjust GST in the 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

View all Senior Accountant interview questions
Are these interview questions helpful?

TBM Technologies Interview Experiences

3 interviews found

Intern Interview Questions & Answers

user image Deepanshu Sharma

posted on 21 Nov 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Java 5 featuers with

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

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

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about TBM Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Mar 2021. 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 - One-on-one 

(1 Question)

  • Q1. Basic Questions related to work

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, articulate your answers well

Interview Questionnaire 

1 Question

  • Q1. Strengths, skills, basic introduction.

Interview Questionnaire 

1 Question

  • Q1. Are uu an experience holder ?
  • Ans. 

    I have gained valuable experience through internships and projects that have equipped me with relevant skills for this role.

    • Completed a summer internship at XYZ Company, where I assisted in project management and learned about team collaboration.

    • Participated in a university research project focused on data analysis, enhancing my analytical and problem-solving skills.

    • Volunteered at a local non-profit, where I developed ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Everything is fine nd gud.
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 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 - ZM And RM 

(1 Question)

  • Q1. Are you interested to do marketing...?
Round 3 - HR 

(1 Question)

  • Q1. Previous experience related queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared the nbfcs related queries
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What is your strength?
  • Ans. 

    My greatest strength is my ability to lead diverse teams towards a common goal while fostering collaboration and innovation.

    • Proven track record of leading cross-functional teams to successfully complete projects ahead of schedule.

    • Implemented a mentorship program that improved team performance by 30%.

    • Skilled in conflict resolution, having mediated disputes that resulted in stronger team dynamics.

    • Consistently recognized ...

  • Answered by AI
  • Q2. Why you want to join this company?
  • Ans. 

    I am drawn to this company for its innovative approach, strong values, and commitment to excellence in the industry.

    • The company's reputation for innovation aligns with my passion for driving change and improving processes.

    • I admire the strong emphasis on teamwork and collaboration, which I believe fosters a productive work environment.

    • The commitment to sustainability and corporate social responsibility resonates with my...

  • Answered by AI
  • Q3. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Read derivatives especially options

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical Analysis and derivatives questions
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 Sep 2022. 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 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Previous experience
Round 3 - Aptitude Test 

Reasoning and logical

Round 4 - HR 

(1 Question)

  • Q1. Previous experience related

TBM Technologies Interview FAQs

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

Some of the top questions asked at the TBM Technologies interview -

  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.

Overall Interview Experience Rating

2/5

based on 1 interview experience

TBM Technologies Reviews and Ratings

based on 12 reviews

3.0/5

Rating in categories

3.4

Skill development

3.2

Work-life balance

2.8

Salary

2.7

Job security

3.1

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 12 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
4 salaries
unlock blur

₹2.5 L/yr - ₹3 L/yr

Data Analyst
4 salaries
unlock blur

₹2.3 L/yr - ₹2.6 L/yr

Web Developer
4 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

HR Executive
4 salaries
unlock blur

₹2.5 L/yr - ₹2.6 L/yr

Java Developer Intern
3 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Explore more salaries
Compare TBM Technologies with

Karvy Financial Services

3.7
Compare

Reliance Money

3.5
Compare

Sonata Finance

3.9
Compare

Incrementors Web Solutions

4.1
Compare
write
Share an Interview