Upload Button Icon Add office photos

Filter interviews by

Tehri Pulp And Paper Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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
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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Introduce your self
  • Ans. 

    I am a highly skilled System Engineer with experience in designing, implementing, and maintaining complex IT systems.

    • Experienced in network infrastructure design and implementation

    • Proficient in troubleshooting and resolving technical issues

    • Skilled in scripting and automation for system administration tasks

  • Answered by AI
  • Q2. Collaborate with other teams

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
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. 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 - HR 

(3 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why do we hire you?
  • Q3. What salary did you expect
Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about your job profile? Roles Responsibilities.
  • Q2. Tell be about manufacturing process which you have been seen in your career
  • Q3. What are core tools of AIAG?
  • Ans. 

    Core tools of AIAG include FMEA, PPAP, MSA, SPC, and APQP.

    • FMEA (Failure Mode and Effects Analysis) is used to identify and prioritize potential failure modes in a process.

    • PPAP (Production Part Approval Process) is used to ensure that suppliers meet customer requirements.

    • MSA (Measurement Systems Analysis) is used to assess the quality of measurement systems.

    • SPC (Statistical Process Control) is used to monitor and contro...

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. What are yours failures?
  • Ans. 

    I have experienced failures in project deadlines, communication, and technical solutions.

    • Missed project deadlines due to underestimating tasks

    • Miscommunication with team members leading to misunderstandings

    • Implemented technical solutions that did not meet requirements

  • Answered by AI
  • Q2. What are your achievements?
  • Q3. What is heat treatment process
  • Ans. 

    Heat treatment process is a method used to alter the physical and sometimes chemical properties of a material through heating and cooling.

    • Involves heating the material to a specific temperature

    • Holding it at that temperature for a set amount of time

    • Then cooling it at a controlled rate

    • Can be used to increase hardness, improve machinability, or enhance other properties

    • Common techniques include annealing, quenching, temper

  • Answered by AI
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

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

(5 Questions)

  • Q1. IND AS related technical questions
  • Q2. Anything related to resume
  • Q3. Related to previous job
  • Q4. Market condition in India
  • Ans. 

    The market condition in India is diverse and constantly evolving.

    • India has a large and growing consumer market with increasing purchasing power

    • The country has a mix of traditional and modern retail channels

    • E-commerce is rapidly growing in popularity

    • The COVID-19 pandemic has had a significant impact on the market

    • Government policies and regulations can also affect market conditions

  • Answered by AI
  • Q5. Knowledge about ZF

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Process of Team Building
  • Ans. 

    Team building is the process of creating a strong and cohesive team by fostering collaboration, communication, and trust among team members.

    • Encourage open communication and active listening among team members

    • Promote team bonding activities and events to build relationships

    • Set clear goals and expectations for the team to work towards

    • Provide opportunities for team members to collaborate on projects and tasks

    • Recognize and...

  • Answered by AI
  • Q2. Sales Techniques

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company to work, friendly staff
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 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

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
 • 40 Interviews
Rostfrei Steels Interview Questions
4.1
 • 32 Interviews
View all

Tehri Pulp And Paper Reviews and Ratings

based on 5 reviews

3.6/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

2.5

Salary

2.5

Job security

2.5

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 5 Reviews and Ratings
Compare Tehri Pulp And Paper with

ZF Steering Gear

3.7
Compare

Dhoot Transmission

3.6
Compare

Amphenol Interconnect

4.2
Compare

Prama Hikvision India

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