Upload Button Icon Add office photos

TBM Technologies

Compare button icon Compare button icon Compare

Filter interviews by

TBM Technologies Backend Developer Interview Questions and Answers

Updated 24 Jun 2021

6 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

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)

Backend Developer Interview Questions Asked at Other Companies

asked in NoBroker
Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, yo ... read more
asked in Simpplr
Q2. Array Sum Calculation Calculate the sum of all elements in an arr ... read more
Q3. Given 9 balls, all of which weigh the same except for one, what i ... read more
asked in Simpplr
Q4. Remove Duplicates from String Problem Statement You are provided ... read more
asked in BlackNGreen
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
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...

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...

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...

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.

TBM Technologies Backend Developer Interview Experiences

1 interview 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 trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about TBM Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. About yourself
  • Q2. Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Backend Developer Interview Questions Asked at Other Companies

asked in NoBroker
Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, yo ... read more
asked in Simpplr
Q2. Array Sum Calculation Calculate the sum of all elements in an arr ... read more
Q3. Given 9 balls, all of which weigh the same except for one, what i ... read more
asked in Simpplr
Q4. Remove Duplicates from String Problem Statement You are provided ... read more
asked in BlackNGreen
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
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:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
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
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
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

  • Q1. What is JPA
  • Q2. Write a program to find duplicate elements in the list
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

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.
Are these interview questions helpful?
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
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Why does you leave your company?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Looking for a new challenge to further develop my skills and experience

    • Seeking opportunities for career advancement and growth

    • Wanting to work in a more collaborative and supportive team environment

  • Answered by AI
  • Q2. Logical questions
  • Q3. What is shrinkage
  • Ans. 

    Shrinkage refers to the reduction in workforce productivity due to factors like breaks, meetings, training, etc.

    • Shrinkage can include time spent on breaks, meetings, training, and other non-productive activities

    • It is important for workforce management to account for shrinkage when planning schedules

    • Examples of shrinkage include lunch breaks, team meetings, and bathroom breaks

  • Answered by AI
  • Q4. Why your name is so lame
  • Q5. Am I a gold digger?
  • Ans. 

    No, being a gold digger implies seeking wealth from others, not relevant to a team lead role.

    • Being a gold digger means seeking wealth or material gain from others

    • As a team lead, your role is to guide and support your team, not exploit them for personal gain

    • Focus on building a strong team and achieving team goals, rather than personal enrichment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not go to this company if you love your self respect
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
  • Q1. Introduction / Salary expectation/ experience / your combability of work
  • Q2. Reason to join the company / idea for improving the business

TBM Technologies Interview FAQs

What are the top questions asked in TBM Technologies Backend Developer interview?

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

  1. What is the lambda functi...read more
  2. what is a decorat...read more
  3. Difference b/w range and xran...read more

Tell us how to improve this page.

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.9
Compare

Reliance Money

3.5
Compare

Sonata Finance

3.9
Compare

Incrementors Web Solutions

4.1
Compare
write
Share an Interview