Upload Button Icon Add office photos

Filter interviews by

Nath Pulp & Paper Mills Interview Questions and Answers

Updated 6 Jun 2020

Nath Pulp & Paper Mills Interview Experiences

1 interview found

I applied via Company Website and was interviewed before Jun 2019. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. About our business standards and quality productions
  • Q2.  our production should be perfect with quality out comings
  • Q3. Working with sincerely
  • Q4. Experience explaining to interviewer
  • Q5. Our production making the profit to company
  • Q6. Making the quality production required by orders

Interview Preparation Tips

Interview preparation tips for other job seekers - my advice to make the interview successfully

Shift Incharge Interview Questions asked at other Companies

Q1. Tell me about power factor and how to keep always .80?
View answer (5)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding related to Arrays and String

Round 2 - Technical 

(1 Question)

  • Q1. Explain your project?

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm, answer confidently
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response
Round 1 - Coding Test 

30 question of c code snippet 5 question of aptitude and 2 coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Storage class in c
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are 4 storage classes in C: auto, register, static, and extern.

    • Auto variables are stored in memory and have local scope.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed by other files.

  • Answered by AI
  • Q2. Mutex and semaphore

Interview Preparation Tips

Interview preparation tips for other job seekers - not selected

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 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 Resume tips
Round 2 - Coding Test 

C, DS understanding and

Round 3 - Coding Test 

C and C++ and domain knowledge

Round 4 - Aptitude Test 

General aptitude test

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

I applied via Campus Placement and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Coding Test 

Online coding test and aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Dsa and memory management basics
Round 4 - Technical 

(1 Question)

  • Q1. Puzzles and Dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Dsa , OOPS AND sql
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

General Aptitude - Time Series, Probability & statistics

Round 3 - Technical 

(1 Question)

  • Q1. General Interview questions on Operator Overriding , Method Overloading

Interview Preparation Tips

Interview preparation tips for other job seekers - Perform well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions were mainly focused on cloud and testing field
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Write code on Merge sort
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, recursively sorts them, and then merges the sorted halves.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain on PCA , SVM and image processing concepts
  • Ans. 

    PCA is a dimensionality reduction technique, SVM is a machine learning algorithm, and image processing involves manipulating images.

    • PCA (Principal Component Analysis) is used to reduce the dimensionality of data by finding the most important features.

    • SVM (Support Vector Machine) is a supervised machine learning algorithm used for classification and regression tasks.

    • Image processing involves techniques like filtering, s...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about your project challenges

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Questions will be asked on previous company roles and responsibilities.
  • Q2. Depends upon previous experience.
Round 2 - Technical 

(2 Questions)

  • Q1. Basics on structure and finishings
  • Q2. Questions on structure and finishings

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for what u wrote in resume.

I was interviewed 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

Contribute & help others!
anonymous
You can choose to be anonymous

Nath Pulp & Paper Mills Interview FAQs

What are the top questions asked in Nath Pulp & Paper Mills interview?

Some of the top questions asked at the Nath Pulp & Paper Mills interview -

  1. our production should be perfect with quality out comi...read more
  2. our production making the profit to comp...read more
  3. making the quality production required by ord...read more

Recently Viewed

INTERVIEWS

Sureworks Infotech Pvt. Ltd.

No Interviews

INTERVIEWS

Sureworks Infotech Pvt. Ltd.

No Interviews

INTERVIEWS

Chiripal Poly Films

No Interviews

INTERVIEWS

Sureworks Infotech Pvt. Ltd.

No Interviews

INTERVIEWS

Chiripal Poly Films

No Interviews

INTERVIEWS

Chiripal Poly Films

No Interviews

INTERVIEWS

Sureworks Infotech Pvt. Ltd.

No Interviews

INTERVIEWS

HCLTech

No Interviews

INTERVIEWS

Chiripal Poly Films

No Interviews

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
Toshiba Interview Questions
4.0
 • 27 Interviews
View all

Nath Pulp & Paper Mills Reviews and Ratings

based on 23 reviews

4.0/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

3.6

Salary

3.8

Job security

3.7

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 23 Reviews and Ratings
Assistant Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Supervisor
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Shift Incharge
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Mechanical Engineer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager- Purchase
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Nath Pulp & Paper Mills with

Dhoot Transmission

3.7
Compare

Amphenol Interconnect

4.2
Compare

Ag Industries

4.0
Compare

Saud Bahwan Group

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