Upload Button Icon Add office photos

Filter interviews by

Tbr Infra Interview Questions and Answers

Updated 23 May 2024

Tbr Infra Interview Experiences

Popular Designations

2 interviews found

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 23 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

30 minutes with aptitude questions

Round 2 - Coding Test 

1 hour coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - do dp

Sdet Engineer Interview Questions asked at other Companies

Q1. Tell me about the projects and knowledge on selenium api and etc?
View answer (2)

I applied via Company Website and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Experience and O & m related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence and free to talk and give straight forward answers

Maintenance Engineer Interview Questions asked at other Companies

Q1. 1)which refrigeration cycle used in chilling plant?
View answer (9)

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

A Housekeeping Attitude Test evaluates an individual's qualities, skills, and mindset essential for housekeeping roles. It focuses on:

1. Cleanliness Awareness – Understanding hygiene and maintaining standards.


2. Behavior and Attitude – Being polite and professional with guests.


3. Time Management – Completing tasks efficiently.


4. Teamwork – Collaborating well with colleagues.


5. Problem-Solving – Handling issues calmly under pressure.


6. Client Satisfaction – Meeting guests' needs effectively.

Round 2 - Case Study 

A housekeeping case study is a practical scenario used to assess problem-solving, decision-making, and operational skills in housekeeping.

Example:

A guest complains about dirty linens and odors in a fully booked hotel. The test evaluates how you:

1. Resolve the guest's issue immediately.


2. Maintain cleanliness standards.


3. Manage staff workload effectively.


4. Prevent future issues

Round 3 - HR 

(1 Question)

  • Q1. The HR duties for housekeeping include managing and supporting housekeeping staff to ensure efficient operations and a clean, hygienic environment. Key responsibilities are: 1. Recruitment and Staffing H...

Interview Preparation Tips

Interview preparation tips for other job seekers - Housekeeping Incharge seeking to enhance operational efficiency and maintain the highest standards of cleanliness and hospitality services.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What do you know about sales?
  • Q2. What is your hobbies, experience and education qualification.
Round 2 - One-on-one 

(3 Questions)

  • Q1. How much experience do you have?
  • Q2. Why did you leave your job?
  • Q3. Why did you leave that job?

Interview Preparation Tips

Topics to prepare for Senco Gold Customer Care Executive interview:
  • About sales
  • Gold
  • Diamond
Interview preparation tips for other job seekers - Identify your skills and enjoy your job.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. HTML, CSS fundamentals
  • Q2. Javascript event loop and array methods
  • Q3. Javascript coding for operation on object array
  • Q4. React benefits and Redux implementations
  • Q5. How to create slice and combine reducers
Round 2 - Behavioral 

(2 Questions)

  • Q1. Questions based on projects, role, responsibilities and initiative at work place
  • Q2. How to create and optimize a react application
Round 3 - HR 

(1 Question)

  • Q1. Day to day activity of workplace and salary negotiation
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Monster and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. Self introduction
  • Q2. Self introduction
  • Q3. Personal details
  • Q4. Personal details
Round 2 - HR 

(3 Questions)

  • Q1. Education family background
  • Q2. Education family background
  • Q3. Personal information
Round 3 - One-on-one 

(2 Questions)

  • Q1. Story reading and writing
  • Q2. Graping information
Round 4 - Technical 

(2 Questions)

  • Q1. Code Speed type
  • Q2. Having good attitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Good knowledge, spreading knowledge
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism,generator,decorator? List vs tuple?
  • Ans. 

    Polymorphism allows objects of different classes to be treated as objects of a common superclass. Generators produce items one at a time. Decorators add functionality to existing functions or methods.

    • Polymorphism: Enables objects of different classes to be treated as objects of a common superclass. Example: Animal superclass with Dog and Cat subclasses.

    • Generator: Produces items one at a time, allowing for efficient mem...

  • Answered by AI
  • Q2. TFIDF, BOW What is embedding why important how to craete embeddings?
  • Ans. 

    Embeddings are a way to represent words or phrases as vectors in a high-dimensional space, capturing semantic relationships.

    • Embeddings are important for tasks like natural language processing, where words need to be represented in a meaningful way.

    • They can be created using techniques like Word2Vec, GloVe, or using neural networks like Word Embeddings.

    • Embeddings help in capturing semantic relationships between words, al...

  • Answered by AI
  • Q3. What is Encoder decoder explain with example?
  • Ans. 

    Encoder-decoder is a neural network architecture used for tasks like machine translation.

    • Encoder processes input data and generates a fixed-length representation

    • Decoder uses the representation to generate output sequence

    • Example: Seq2Seq model for translating English to French

  • Answered by AI
  • Q4. What is stop word? We need to remove in every application or not tell me example when stop words are importan?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Types of job in kotlin coroutine
  • Ans. 

    Types of jobs in Kotlin coroutine include launch, async, withContext, and runBlocking.

    • launch: starts a new coroutine without blocking the current thread

    • async: starts a new coroutine and returns a Deferred object with a result

    • withContext: switches the coroutine context within a coroutine

    • runBlocking: blocks the current thread until the coroutine inside it is completed

  • Answered by AI
  • Q2. What is Flow, Channel diffrent between StateFlow and SharedFlow
  • Ans. 

    Flow is a cold asynchronous data stream, Channel is a hot asynchronous data stream. StateFlow is a hot asynchronous data stream with a state, SharedFlow is a hot asynchronous data stream without a state.

    • Flow is a cold asynchronous data stream that emits values one by one.

    • Channel is a hot asynchronous data stream that can have multiple subscribers.

    • StateFlow is a hot asynchronous data stream that retains the most recent ...

  • Answered by AI
  • Q3. If Flow lifecycle aware
  • Ans. 

    Flow lifecycle aware means using Kotlin Flow with lifecycle awareness in Android development.

    • Flow lifecycle aware helps manage data streams in Android apps

    • It ensures that data emissions are only observed when the lifecycle is in the appropriate state

    • Example: Using Flow with LiveData to update UI components based on lifecycle events

  • Answered by AI
  • Q4. What is inline function and highorder function?
  • Ans. 

    Inline functions are functions that are expanded in place at the call site, while high-order functions are functions that can take other functions as parameters or return them.

    • Inline functions are expanded in place at the call site to improve performance.

    • High-order functions can take other functions as parameters or return them.

    • Example of high-order function: map() function in Kotlin.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Kotlin basic

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. What basic questions have you been asked regarding your accomplishments and achievements?
  • Q2. Technical regarding excel
Round 2 - HR 

(1 Question)

  • Q1. Why do you believe you are a good fit for this role?
  • Ans. 

    I have a proven track record of successfully managing key accounts and developing strong relationships with clients.

    • Extensive experience in key account management

    • Strong communication and negotiation skills

    • Ability to identify and capitalize on business opportunities

    • Track record of exceeding sales targets

    • Excellent relationship-building skills

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Excel questions about vlookup
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Some persons are discussing the company and jobs

Round 2 - One-on-one 

(5 Questions)

  • Q1. What experience in this field
  • Q2. What kind of job works before
  • Q3. Any reason choose this platform
  • Ans. 

    I chose this platform because of its strong reputation in the industry and its proven track record of success.

    • Strong reputation in the industry

    • Proven track record of success

    • Positive reviews from current and past employees

    • Opportunities for growth and advancement

    • Innovative and cutting-edge technology

  • Answered by AI
  • Q4. When you start your platform
  • Q5. Are you sure this job is perfect

Interview Preparation Tips

Interview preparation tips for other job seekers - You are select intresting jobs

Tbr Infra Interview FAQs

How many rounds are there in Tbr Infra interview?
Tbr Infra interview process usually has 2 rounds. The most common rounds in the Tbr Infra interview process are Aptitude Test and Coding Test.
How to prepare for Tbr Infra 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 Tbr Infra. The most common topics and skills that interviewers at Tbr Infra expect are Accounting, Compliance, Customer Service, Drives and ESI.

Tell us how to improve this page.

People are getting interviews through

based on 2 Tbr Infra interviews
Company Website
Job Portal
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

GMR Group Interview Questions
4.1
 • 75 Interviews
GAMMON INDIA Interview Questions
3.9
 • 29 Interviews
View all

Tbr Infra Reviews and Ratings

based on 31 reviews

3.7/5

Rating in categories

3.8

Skill development

3.4

Work-Life balance

3.7

Salary & Benefits

3.4

Job Security

3.9

Company culture

3.4

Promotions/Appraisal

3.3

Work Satisfaction

Explore 31 Reviews and Ratings
Shift Incharge
6 salaries
unlock blur

₹1.9 L/yr - ₹3 L/yr

MIS Executive
5 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

Plaza Manager
5 salaries
unlock blur

₹4.6 L/yr - ₹9 L/yr

Manager
4 salaries
unlock blur

₹4.7 L/yr - ₹7 L/yr

Project Manager
4 salaries
unlock blur

₹8.6 L/yr - ₹14.5 L/yr

Explore more salaries
Compare Tbr Infra with

Larsen & Toubro Limited

4.0
Compare

GMR Group

4.1
Compare

Reliance Infrastructure

4.1
Compare

Adani Enterprises

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview