Upload Button Icon Add office photos

Filter interviews by

Aakriti Manufacturing Interview Questions and Answers

Updated 21 Mar 2024

Aakriti Manufacturing Interview Experiences

Popular Designations

3 interviews found

Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2022

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

(2 Questions)

  • Q1. About drawing angle 1st & 3rd
  • Q2. Made a assembly of drawing.
Round 3 - Technical 

(1 Question)

  • Q1. Not any required from the designing team

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be calm.
Always believe on you don't give up soon.
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 Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Brass material grade

Junior Engineer Interview Questions asked at other Companies

Q1. What is the main role of Junior engineer in Electrical maintenance and How to provide the company facilities ?
View answer (25)

I applied via Company Website and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Production increase with run manpower
  • Ans. 

    Increasing production requires more manpower.

    • Adding more workers can increase output.

    • Efficient use of manpower is important.

    • Automation can also increase production without adding manpower.

    • Training and development of workers can improve productivity.

    • Balancing manpower and production targets is crucial.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - i have best knowledge about the manufacturing industry and production developing

Product Engineer Interview Questions asked at other Companies

Q1. Left View of a Binary Tree Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side. Input: The input consists of elements in ... read more
View answer (1)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Here they have work basically based on windows. So better to have c# and windows related stuff. Like win32, mfc, .net, c# . Here in my case I did not have experience in windows to ki made them clear about ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Two technical rounds were there and one more technical round with US panel were there. They were very cooperative.

I applied via Naukri.com and was interviewed before May 2021. 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 - Group Discussion 

Share the details from work related questions

Round 3 - Technical 

(1 Question)

  • Q1. What ever the new ideas
Round 4 - Work related 

(4 Questions)

  • Q1. Which type of field in previous working area
  • Q2. How many years working experience and working time any improvement
  • Q3. Work related question
  • Q4. Why choose this type job

Interview Preparation Tips

Interview preparation tips for other job seekers - Your job related going time choose the company and salary, timing, near by transport all facility checked more important
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. DSA question on the technical based
  • Q2. Same another one is DSA algorithm question

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for future
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

I applied via Recruitment Consulltant and was interviewed in Nov 2021. 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 - Technical 

(1 Question)

  • Q1. Product knowledge and experience
Round 3 - HR 

(1 Question)

  • Q1. Personal details and experience levels

Interview Preparation Tips

Interview preparation tips for other job seekers - Share your profile and be confident, before committing make sure you are understand about job role and other details
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Dec 2022. 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 - Technical 

(6 Questions)

  • Q1. How do you find the code performance issue in the code deployed in production?
  • Ans. 

    To find code performance issues in production, use monitoring tools and profiling techniques.

    • Use monitoring tools like New Relic, AppDynamics, or Datadog to track performance metrics and identify bottlenecks.

    • Use profiling techniques like CPU profiling, memory profiling, and network profiling to pinpoint specific areas of the code that are causing performance issues.

    • Analyze logs and error messages to identify patterns a...

  • Answered by AI
  • Q2. What is asynchronous programming
  • Ans. 

    Asynchronous programming is a programming paradigm that allows multiple tasks to run concurrently without blocking each other.

    • Asynchronous programming is used to improve the performance of applications that require a lot of I/O operations.

    • It involves the use of callbacks, promises, and async/await keywords in JavaScript.

    • Asynchronous programming can be used in both front-end and back-end development.

    • Examples of asynchro...

  • Answered by AI
  • Q3. Write a program to change background after every 0.5 sec interval to orange,white,green on button click in Angular?
  • Ans. 

    Program to change background color on button click in Angular

    • Create a button in Angular template

    • Add click event listener to the button

    • Use setInterval() function to change background color after every 0.5 sec

    • Use ngStyle directive to change background color dynamically

  • Answered by AI
  • Q4. How to load a component only after 3 of my services are loaded?
  • Ans. 

    Use Angular's 'resolve' property to load component after services are loaded.

    • Create a resolver service that waits for all three services to complete before resolving.

    • Add the resolver service to the 'resolve' property of the component's route.

    • Access the resolved data in the component using the ActivatedRoute service.

    • Example: { path: 'my-component', component: MyComponent, resolve: { data: MyResolverService } }

  • Answered by AI
  • Q5. What is difference between iquerable and ienumrable
  • Ans. 

    IQueryable is for querying data from a source that implements IQueryable interface while IEnumerable is for iterating over a collection of data.

    • IQueryable is used for deferred execution while IEnumerable is used for immediate execution.

    • IQueryable is used for querying data from a remote data source while IEnumerable is used for querying data from an in-memory collection.

    • IQueryable is more efficient for large datasets as...

  • Answered by AI
  • Q6. When you go with entity framework and ado.net
  • Ans. 

    Entity Framework is an ORM while ADO.NET is a data access technology.

    • Entity Framework is easier to use and provides more abstraction than ADO.NET.

    • ADO.NET is faster and more flexible than Entity Framework.

    • Use Entity Framework for simple CRUD operations and ADO.NET for complex queries and performance-critical applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on skills from your resume. Prepare more on Angular,Design patterns. Should have knowledge on Azure.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jun 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. Technical knowledge about area
  • Q2. English is required as fluent
Round 3 - Aptitude Test 

Question abou TPM, OEE, six Sigma, lean manufacturing,kaizen,poka yoke etc

Round 4 - HR 

(1 Question)

  • Q1. No sales discuss the directly give you ofer with hike of 30-40%

Interview Preparation Tips

Interview preparation tips for other job seekers - Be fluent in English
Be confident
Share only you know very well.
Short but exactly answers the required in interview stories are no one like

Aakriti Manufacturing Interview FAQs

How many rounds are there in Aakriti Manufacturing interview?
Aakriti Manufacturing interview process usually has 2 rounds. The most common rounds in the Aakriti Manufacturing interview process are Technical and Resume Shortlist.
What are the top questions asked in Aakriti Manufacturing interview?

Some of the top questions asked at the Aakriti Manufacturing interview -

  1. production increase with run manpo...read more
  2. Not any required from the designing t...read more
  3. About drawing angle 1st & ...read more

Tell us how to improve this page.

Aakriti Manufacturing Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Global Autotech Interview Questions
4.0
 • 47 Interviews
Ag Industries Interview Questions
4.0
 • 41 Interviews
Rostfrei Steels Interview Questions
4.1
 • 32 Interviews
View all

Aakriti Manufacturing Reviews and Ratings

based on 26 reviews

3.5/5

Rating in categories

3.5

Skill development

3.3

Work-life balance

3.3

Salary

3.4

Job security

3.6

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 26 Reviews and Ratings
Design Engineer
7 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Production Engineer
7 salaries
unlock blur

₹3.5 L/yr - ₹4.5 L/yr

PPC Coordinator
4 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Junior Quality Engineer
4 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Production Planning Control Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Aakriti Manufacturing with

ZF Steering Gear

3.7
Compare

Dhoot Transmission

3.7
Compare

Amphenol Interconnect

4.2
Compare

Prama Hikvision India

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