Upload Button Icon Add office photos

Filter interviews by

TLT Engineering India Administration Assistant Interview Questions and Answers

Updated 17 Jan 2022

TLT Engineering India Administration Assistant Interview Experiences

1 interview found

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Are you ok with Relocation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't hesitate before answering this question. Mine was : "No Sir. I have my family and some responsibilities to parent which I couldn't left aside for my career growth."

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. About the work experience
  • Q2. What is the strength and weakness
  • Q3. What are the current hr trends
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is the use of ACL?
  • Ans. 

    ACL stands for Access Control List, which is used to control access to resources by specifying which users or systems are allowed to access them.

    • ACLs are commonly used in computer networking to control access to files, directories, and network resources.

    • They can be configured to allow or deny specific types of traffic based on criteria such as source IP address, destination IP address, port number, etc.

    • ACLs can be appl...

  • Answered by AI
  • Q2. What is office 365 and use ?
  • Ans. 

    Office 365 is a cloud-based subscription service offered by Microsoft that includes access to various productivity tools and applications.

    • Includes applications like Word, Excel, PowerPoint, Outlook, and OneNote

    • Allows users to access their files and collaborate with others from anywhere with an internet connection

    • Offers features like email hosting, file storage, and video conferencing

    • Provides regular updates and securit

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Introduce your-self?
  • Ans. 

    Experienced retail professional with strong leadership skills and a passion for customer service.

    • Over 5 years of experience in retail management

    • Proven track record of increasing sales and improving customer satisfaction

    • Strong communication and team-building skills

    • Passionate about delivering exceptional customer service

    • Bachelor's degree in Business Administration

  • Answered by AI
  • Q2. How many years of experience do you have?
  • Ans. 

    I have 5 years of experience in management roles, including 2 years as an Assistant Manager.

    • 5 years of overall management experience

    • 2 years specifically as an Assistant Manager

    • Experience in leading teams and overseeing daily operations

    • Implemented successful strategies to improve efficiency and productivity

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for strong in their field of job.
Be strong physically and mentally.

I applied via Walk-in and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All question related to my profile and relevant to my Experience industries .

Interview Preparation Tips

Interview preparation tips for other job seekers - As you know that my experience is little because many talented and old experience person have in Scm Lines .
After that i will share my views regarding the same , if any candidates have below properties then he is hero .
like as Person should be Honest , Self Confidant , Hard worker,
Discipline and good knowledge as per him/her experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Case Study 

Advance Excel spreadsheet communication skills and English speaking

Round 2 - Assignment 

HR Policy Is Very poor Not provide offer letter and salary structure only LOI not mentioned in CTC frauds employees please awareness

I applied via Naukri.com and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Personal data, previous job details
  • Q2. Reason for leaving job, expected salary,
Round 2 - HR 

(1 Question)

  • Q1. Same question repeated. Discussion about everything, discussion on the job I have applied for. Salary negotiation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to be confidence, polite, calm and honest.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 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 - One-on-one 

(1 Question)

  • Q1. Self and previous experience and about family
Round 3 - One-on-one 

(1 Question)

  • Q1. Privious salery expectation and joining dates

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for New joiners to learn market and get much skills

I appeared for an interview in Dec 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

There were 5 people in the zoom meet, including me. Rest all 4 were interviewers, 3 from India and 1 from the United Kingdom.
They started with my introduction and then moved on to the questions from my resume, starting with my internship at Samsung Bangalore and then projects.
Then another interviewer asked about my weakness and strength. Then comes the turn of coding questions.
Starting with finding the minimum element in O(1) time, rotating the 2-D array by 90 degrees, OOPS questions were also asked like- polymorphism, abstraction, virtual class. Some OS questions were- cache, paging algorithms.
Then come my POR and other activities.

  • Q1. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    Find the K-th smallest element in an array of distinct integers.

    • Sort the array and return the element at index K-1.

    • Use a min-heap to find the K-th smallest element efficiently.

    • Implement quickselect algorithm for optimal performance.

  • Answered by AI
  • Q2. 

    Inplace Rotate Matrix 90 Degrees Anti-Clockwise

    You are provided with a square matrix of non-negative integers of size 'N x N'. The task is to rotate this matrix by 90 degrees in an anti-clockwise directi...

  • Ans. 

    Rotate a square matrix by 90 degrees anti-clockwise without using extra space.

    • Iterate through each layer of the matrix from outer to inner layers

    • Swap elements in groups of 4 to rotate the matrix in place

    • Handle odd-sized matrices separately by adjusting the loop boundaries

  • Answered by AI
  • Q3. What are the page replacement algorithms in Operating Systems?
  • Ans. 

    Page replacement algorithms are used in operating systems to decide which page to replace when a new page needs to be brought in.

    • FIFO (First In, First Out) - replaces the oldest page in memory

    • LRU (Least Recently Used) - replaces the page that has not been used for the longest time

    • LFU (Least Frequently Used) - replaces the page that has been used the least number of times

    • Optimal - replaces the page that will not be used

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteria7 CGPAJaguar Land Rover interview preparation:Topics to prepare for the interview - Arrays, Strings, Stack and Queue, STL, Object-Oriented Programming, Operating System, Database Management System, Computer NetworksTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice GFG Must Do section, solve at least 5 Questions daily
Tip 2 : Start talking to new people regarding technology to remove hesitation at the time of the interview.
Tip 3 : Be in contact with a senior already working in that company, ask them regarding previous experience and new project the company is working on.
Tip 4 : Once you are done with GFG must do questions, now complete leetcode sorting by your target company.
Tip 5 : For core subjects refer to gate smashers and knowledge gate videos on youtube.

Application resume tips for other job seekers

Tip 1 : Try to modify your resume according to the company you are applying for, for this read their Job Description provided to you.
Tip 2 : Mention no more than 3 projects and 1,2 internships.
Tip 3 : Divide your skills into beginner, intermediate and hard sections, otherwise don't mention too many skills.
Tip 4 : Don't mention to many Position Of Responsibilities( at max 2-3).

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. It went well, results awaiting

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent company to work. Preparation is the key to crack the interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Process knowledge on Electroplating Process from start to end
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on your strong areas and be confident

Tell us how to improve this page.

Interview Questions from Similar Companies

Global Autotech Interview Questions
4.0
 • 47 Interviews
Ag Industries Interview Questions
4.0
 • 41 Interviews
Toshiba Interview Questions
4.0
 • 28 Interviews
View all
Design Engineer
13 salaries
unlock blur

₹3.3 L/yr - ₹5.6 L/yr

Project Engineer
6 salaries
unlock blur

₹3.2 L/yr - ₹5.2 L/yr

Proposal Engineer
6 salaries
unlock blur

₹3.6 L/yr - ₹5.1 L/yr

Production Engineer
5 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Assistant Manager Design
5 salaries
unlock blur

₹7.2 L/yr - ₹8.2 L/yr

Explore more salaries
Compare TLT Engineering India with

Dhoot Transmission

3.7
Compare

Amphenol Interconnect

4.2
Compare

Ag Industries

4.0
Compare

Global Autotech

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