Upload Button Icon Add office photos

Filter interviews by

Adroit Mechanical Workshop Interview Questions and Answers

Updated 12 Dec 2022

Adroit Mechanical Workshop Interview Experiences

Popular Designations

2 interviews found

CC Executive Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2022

I applied via Walk-in and was interviewed in Nov 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is BPO, what is KPI, what is KRI, How many types of BPO are there and which ones?
  • Ans. 

    BPO stands for Business Process Outsourcing. KPI is Key Performance Indicator and KRI is Key Risk Indicator.

    • BPO is the practice of contracting non-core business activities and functions to a third-party provider.

    • KPIs are measurable values that demonstrate how effectively a company is achieving key business objectives.

    • KRIs are metrics used to identify and manage potential risks that could negatively impact an organizati...

  • Answered by AI
  • Q2. About your self, are you fresher or not and they always check your communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Wearing formal dress and talk with confidence and this company give you appraisal and good opportunity for improving your career and it's better for you so please GO and best of luck buddy.

CC Executive Interview Questions asked at other Companies

Q1. Suppose customer has received a damaged product. How you will handle this senario?
View answer (1)

I was interviewed in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Based on the observation round all the questions were asked and was given the opportunity to clear our doubts

Interview Preparation Tips

Round: Resume Shortlist
Experience: In this the interviewer just asked me about my family background and about myself

Round: Test
Experience: I had to write an aptitude test paper consisting of 25 mcq questions. The twst was an average one
Duration: 30 minutes
Total Questions: 25

Round: Observation round
Experience: In this they actually took us on feild where actually the business take place and we were suppose to observe how people act, talk and handle different situations.

College Name: BKMIBA

Business Development Executive Interview Questions asked at other Companies

Q1. scenario based: if I am a teacher in a government school and my child is getting +90% marks, then why should i buy byjus course
View answer (14)

Interview questions from similar companies

Intern Interview Questions & Answers

AT&T user image Anonymous

posted on 17 Mar 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Use of Hash Table
  • Ans. 

    Hash tables are data structures that store key-value pairs for efficient retrieval.

    • Hash tables use a hash function to map keys to indexes in an array.

    • They have constant time complexity for insertion, deletion, and lookup operations.

    • Collisions can occur when multiple keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic DSA questions.

Skills evaluated in this interview

Intern Interview Questions & Answers

AT&T user image Anonymous

posted on 23 Nov 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. It was a online coding round with one question related to a medium hard binary search question..
  • Q2. The second question was bit ambiguous question involving a tree, where we were asked to add a tree child and subchild in the form a a directory and subdirectory

Interview Preparation Tips

Interview preparation tips for other job seekers - The flexibility in interview rescheduling is not good, If you'll ask for rescheduling, you won't get a new date, and the current will be cancelled
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Asked about work experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2022. 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Explain the architecture of Kubernetes
  • Ans. 

    Kubernetes is a container orchestration platform that manages and automates the deployment, scaling, and management of containerized applications.

    • Kubernetes uses a master-slave architecture with a control plane and worker nodes.

    • The control plane manages the overall state of the cluster and schedules workloads to the worker nodes.

    • Worker nodes run the containers and communicate with the control plane to receive instructi...

  • Answered by AI
  • Q2. Give case study scenario where you implemented a app through any cloud provider (I preferred with azure)
Round 3 - Technical 

(3 Questions)

  • Q1. Explain the garbage collection process in java
  • Ans. 

    Garbage collection is an automatic process of freeing up memory by removing unused objects.

    • Java uses a mark-and-sweep algorithm for garbage collection

    • Objects that are no longer referenced are marked for deletion

    • The garbage collector runs periodically to remove the marked objects

    • Finalize() method can be used to perform cleanup operations before an object is deleted

  • Answered by AI
  • Q2. Explain how did you implemented CI CD integration through Jenkins
  • Ans. 

    Implemented CI/CD integration through Jenkins using pipeline as code approach

    • Created a Jenkins pipeline job and defined stages for build, test, and deploy

    • Integrated source code management tool like Git with Jenkins

    • Used Jenkins plugins like Maven, Docker, and Kubernetes for building, packaging, and deploying the application

    • Configured Jenkins to trigger the pipeline on every code commit or merge to the main branch

    • Enabled...

  • Answered by AI
  • Q3. Describe how Azure hosted AKS works
  • Ans. 

    Azure hosted AKS is a managed Kubernetes service that simplifies deployment and management of containerized applications.

    • AKS stands for Azure Kubernetes Service

    • AKS is a fully managed Kubernetes container orchestration service

    • AKS automates the deployment, scaling, and management of containerized applications

    • AKS integrates with other Azure services such as Azure Active Directory, Azure Monitor, and Azure Container Regist

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to your resume and do good basic prep in technologies that you’ve mentioned in your resume

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Questions were asked

Round 2 - Coding Test 

Dsa dp, graphs and many more questions from arrays and linked list were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - No
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Fibonacci series coding q

Round 2 - Technical 

(2 Questions)

  • Q1. Sql basics ,oops concepts
  • Q2. Projects and other stuff
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

A Hacker rank test was trigerred

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end of the string

    • Repeat until the entire string is reversed

  • Answered by AI
  • Q2. Move zeros in an array
  • Ans. 

    Move all zeros to the end of an array of strings

    • Iterate through the array and keep track of the index to place non-zero elements

    • After iterating, fill the remaining indices with zeros

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Explain your role in your current project and how you handled your customer in problematic situation?
Contribute & help others!
anonymous
You can choose to be anonymous

Adroit Mechanical Workshop Interview FAQs

How many rounds are there in Adroit Mechanical Workshop interview?
Adroit Mechanical Workshop interview process usually has 2 rounds. The most common rounds in the Adroit Mechanical Workshop interview process are One-on-one Round and Resume Shortlist.
How to prepare for Adroit Mechanical Workshop 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 Adroit Mechanical Workshop. The most common topics and skills that interviewers at Adroit Mechanical Workshop expect are Salesforce, B2B Sales, Corporate Sales, Campaign Management and Digital Marketing.
What are the top questions asked in Adroit Mechanical Workshop interview?

Some of the top questions asked at the Adroit Mechanical Workshop interview -

  1. What is BPO, what is KPI, what is KRI, How many types of BPO are there and whic...read more
  2. Based on the observation round all the questions were asked and was given the o...read more

Recently Viewed

INTERVIEWS

Elegant Network Services

No Interviews

SALARIES

RBL Bank

SALARIES

IDC Technologies

REVIEWS

South Indian Bank

No Reviews

SALARIES

Bunge India

INTERVIEWS

Infosys

No Interviews

REVIEWS

South Indian Bank

No Reviews

SALARIES

South Indian Bank

REVIEWS

IDC Technologies

No Reviews

REVIEWS

Teleindia Networks

No Reviews

Tell us how to improve this page.

Adroit Mechanical Workshop Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Ericsson Interview Questions
4.1
 • 411 Interviews
Nokia Interview Questions
4.1
 • 267 Interviews
BT Group Interview Questions
3.9
 • 180 Interviews
ACT Fibernet Interview Questions
4.0
 • 133 Interviews
Verizon Interview Questions
4.1
 • 110 Interviews
AT&T Interview Questions
4.1
 • 53 Interviews
Telstra Interview Questions
4.0
 • 48 Interviews
View all

Adroit Mechanical Workshop Reviews and Ratings

based on 28 reviews

4.0/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.2

Salary

4.0

Job security

3.7

Company culture

4.0

Promotions

3.8

Work satisfaction

Explore 28 Reviews and Ratings
Data Scientist
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Production Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Care Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Telecaller
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Adroit Mechanical Workshop with

Ericsson

4.1
Compare

Nokia

4.1
Compare

ACT Fibernet

4.0
Compare

Huawei Technologies

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