Upload Button Icon Add office photos

Filter interviews by

Productive Engineers Interview Questions and Answers for Freshers

Updated 19 May 2022

Productive Engineers Interview Experiences for Freshers

1 interview found

I applied via Walk-in and was interviewed in 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 

(2 Questions)

  • Q1. Diploma bas any questions
  • Q2. Experience bas any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Job interview in experience bas question

Junior Mechanical Engineer Interview Questions asked at other Companies

Q1. How to improve cycle time and how to do rejection control
View answer (1)

Interview questions from similar companies

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 - Aptitude Test 

Test was about finance+ English+ reasoning

Round 3 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
  • Q5. Situation based questions Excel questions
Round 4 - Technical 

(1 Question)

  • Q1. Basic taxation questions Accounting questions like principles and gaap

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to give your best.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about your self
  • Q2. What are lists and tupples
  • Ans. 

    Lists and tuples are data structures in Python used to store collections of items.

    • Lists are mutable and ordered, allowing for easy addition and removal of elements.

    • Tuples are immutable and ordered, making them useful for storing related data that should not be changed.

    • Both can store any type of data, including other lists or tuples.

    • Lists are created using square brackets, while tuples use parentheses.

    • Example: my_list =...

  • Answered by AI
  • Q3. What is inheritance and type of inheritance
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • It allows the new class to inherit the properties and methods of the existing class.

    • The existing class is called the parent or base class, and the new class is called the child or derived class.

    • There are different types of inheritance: single, multiple, multilevel, and hierarchical.

    • Example: A car class can be a parent class, and a sed...

  • Answered by AI
  • Q4. Code for sum of n natural numbers
  • Ans. 

    Code for sum of n natural numbers

    • Use a loop to iterate from 1 to n and add each number to a sum variable

    • Return the sum variable

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

5 Questions

  • Q1. Can I attend the interview
  • Q2. I received mail for schudul 31.03.2020 March
  • Q3. You already scheduled the interview
  • Q4. I don't see any time,venue in your mail
  • Q5. So please response my mail

Interview Preparation Tips

Interview preparation tips for other job seekers - I completed my graduation with 78.9%

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 70 minutes
Round difficulty - Easy

  • Q1. Parth And His OCD

    Parth is a nerd programmer. He has started learning array/list programming. Parth has received an array/list ‘ARR’ of ‘N’ positive integers as a gift. Parth’s OCD gets triggered every tim...

  • Ans. Brute Force

    The basic idea of this approach is to iterate the whole ‘ARR’ from start and see if the element present at the current position satisfies the conditions or not. If the element at the current index is not as per requirement then we will find an element which can take that position from ‘ARR’ after that index and replace it with the current element. 

     

    Here is the algorithm:
     

    1. Run a loop for ‘i’ = 0...

  • Answered by CodingNinjas
  • Q2. Find all occurrences

    You are given a 'M' x 'N' matrix of characters, 'CHARACTER_MATRIX' and a string 'WORD'. Your task is to find and print all occurrences of the string in ...

  • Ans. DFS

    We can use DFS to solve this problem. The idea is to start from each cell in the matrix and explore all eight paths possible and recursively check if they will lead to the solution or not. To make sure that the path is simple and doesn’t contain any cycles, we keep track of cells involved in the current path  and before exploring any cell, we ignore it if it is already covered in the current path.

     

    We can f...

  • Answered by CodingNinjas
  • Q3. Print Nodes at distance K from a given node

    You are given an arbitrary binary tree, a node of the tree, and an integer 'K'. You need to find all such nodes which have a distance K from the given no...

  • Ans. DFS
    • Create a map to store the parent of each node in the tree, Traverse the tree recursively (via depth-first search), at each step if the current node is not NULL. Store its parent in the map, then traverse the left and right subtree.
    • Now assume that the given node is the root of the tree. In such a case, we can simply run a breadth-first search from the root, and track the current level of the tree. When the level = ‘K...
  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Easy

The nature of the interviewer was very kind. The test was proctored, our webcam and mic were on, and shared my screen.

  • Q1. Diagonal Traversal of a binary tree.

    You have been given a binary tree of integers. You are supposed to find the diagonal traversal(refer to Example) of the given binary tree.

    Example:

    Consider lines at...
  • Ans. Map based approach

    The idea is to use the Map to store all the nodes of a particular diagonal number. We will use preorder traversal to update the Map. The key of the Map will be the diagonal number and the value of the Map will be an array/list that will store all nodes belonging to that diagonal. 

     

    The steps are as follows:

     

    1. Assign the diagonal number of the root as 0.
    2. Do a preorder traversal of the binary...
  • Answered by CodingNinjas
  • Q2. Diameter of the binary tree.

    You are given a Binary Tree. You are supposed to return the length of the diameter of the tree.

    The diameter of a binary tree is the length of the longest path between any tw...

  • Ans. Recursion

    The basic idea of this approach is to break the problem into subproblems. 

    Now, there are three possible cases:

     

    1. The diameter of the tree is present in the left subtree.
    2. The diameter of the tree is present in the right subtree.
    3. The diameter of the tree passes through the root node.

     

    Let us define a recursive function, ‘getDiamter’, which takes the root of the binary tree as input parameter and return...

  • Answered by CodingNinjas
Round 3 - Video Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Medium

The nature of the interviewer was very kind, helped me when I stuck. The test was proctored, our webcam and mic were on, and shared my screen.

  • Q1. Next Greater Element

    For a given array/list of integers of size N, print the Next Greater Element(NGE) for every element. The Next Greater Element for an element X is the first element on the right side of...

  • Ans. Brute Force

    For every element in the array, we will run a loop on its right side. As soon as we find an element on its right side which is greater than it, we will break the loop, assign it as the NGE of this element, move forward, and do the same for the next element.

    Space Complexity: O(1)Explanation:

    O(1)

     

    No extra space is used.

    Time Complexity: O(n^2)Explanation:

    O(N ^ 2),  Where N is the number of elements ...

  • Answered by CodingNinjas
  • Q2. Subset Sum Equal To K

    You are given an array/list ‘ARR’ of ‘N’ positive integers and an integer ‘K’. Your task is to check if there exists a subset in ‘ARR’ with a sum equal to ‘K’.

    Note: Return true if ...

  • Ans. Recursion

    The idea is to generate all possible subsets and check if any of them sums up to ‘K’. This can be done through recursion.

     

    Here is the algorithm:

     

    subsetSumToK(N , K , ARR):

    1. Initialize integer variable ‘ANS’ = ‘helper(ARR, N, K)’. Here ‘helper’ is the recursive function that returns true/false.
    2. If ‘ANS’ is equal to 1 then:
      • Return true.
    3. Else:
      • Return false.

     

    helper(ARR, N, K):

    1. Base case: If ‘N’ is less tha...
  • Answered by CodingNinjas
Round 4 - Video Call 

(3 Questions)

Round duration - 50 minutes
Round difficulty - Easy

The nature of the interviewer was very kind, helped me when I stuck. The test was proctored, our webcam and mic were on, and shared my screen.

  • Q1. Buy and Sell Stock

    You are Harshad Mehta’s friend. He told you the price of a particular stock for the next ‘N’ days. You can either buy or sell a stock. Also, you can only complete at most 2-transactions....

  • Ans. Recursion

    This problem can be solved by solving its subproblems and then combining the solutions of the solved subproblems to solve the original problem. We will do this using recursion.

    Basically, we have to buy the stock at the minimum possible price and sell at the maximum possible price, keeping in mind that we have to sell the stock before buying it again.

     

     

    Below is the detailed algorithm: 

     

    1. Call ...
  • Answered by CodingNinjas
  • Q2. DBMS Questions

    SQL command
    ACID properties
    Difference between unique primary and foreign key.

  • Q3. OS Questions

    What is segementation.
    Difference between internal and external fragmentation.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from JSS Academy of Technical Education. I applied for the job as SDE - Intern in NoidaEligibility criteriaNo criteriaPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, C++, DevelopmentTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 1 projects at any technology
Tip 2 : Learn DSA at least these topics Array, LL, Tree, DP

Application resume tips for other job seekers

Tip 1 : At least mention the projects or internships on your resume.
Tip 2 : Avoid unnecessary details like Hobbies, declaration, date.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Total 4 rounds excluding 1 assessment which is easy. 3 technical rounds and 1 HR round
  • Q2. Asked about Terraform, Docker, Kubernetes and Jenkins

Interview Preparation Tips

Interview preparation tips for other job seekers - For good results, kindly sharpen the basics of the tools used in the project.
Also, try to explain in a proper way how you contributed in present organization.

Associate Interview Questions & Answers

WNS user image Anonymous

posted on 29 Apr 2021

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What are the Top skills needed?

Interview Preparation Tips

Interview preparation tips for other job seekers - This Interview was technical one but was mejorly a stress test. The Inreviewer wanted to test both my knowledge and communication skills. i was able to answer most of the questions correctly. it was my first offcamous intetrview, and i think i did pretty well for a fresher.

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

Interview Questionnaire 

2 Questions

  • Q1. About yourself.
  • Q2. How you dealt with your past experiences in your job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and have good communication skills. Include 14 principals of Amazon when you attend the interview and relate it to your past life/work experience, as they will want to know any of your past experiences in your previous job where you handled it and how.

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

Interview Questionnaire 

2 Questions

  • Q1. Account open krwa loge?
  • Q2. Sales ka job hai market me ghumna parega?

Interview Preparation Tips

Interview preparation tips for other job seekers - Bakwaas job for any fresher no traning no professional treatment bs account kaise v open krna h daily nhi to manager ka gaali khaao subah me dopahar me or saam me

Interview Questionnaire 

1 Question

  • Q1. Nathing

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher. You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.

Productive Engineers Interview FAQs

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

Some of the top questions asked at the Productive Engineers interview for freshers -

  1. Diploma bas any questi...read more
  2. Experience bas any questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Productive Engineers interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.3k Interviews
Tata Motors Interview Questions
4.2
 • 974 Interviews
WNS Interview Questions
3.4
 • 957 Interviews
Infosys BPM Interview Questions
3.7
 • 918 Interviews
Google Interview Questions
4.4
 • 833 Interviews
Bharti Airtel Interview Questions
4.0
 • 807 Interviews
DXC Technology Interview Questions
3.7
 • 801 Interviews
Mphasis Interview Questions
3.4
 • 784 Interviews
KPMG India Interview Questions
3.5
 • 776 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
View all

Productive Engineers Reviews and Ratings

based on 4 reviews

3.6/5

Rating in categories

3.6

Skill development

3.4

Work-Life balance

2.8

Salary & Benefits

3.4

Job Security

3.4

Company culture

3.3

Promotions/Appraisal

3.5

Work Satisfaction

Explore 4 Reviews and Ratings
Mechanical Engineer
7 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Junior Engineer
6 salaries
unlock blur

₹2.3 L/yr - ₹3.1 L/yr

Quality Engineer
6 salaries
unlock blur

₹1.8 L/yr - ₹2.5 L/yr

Diploma Mechanical Engineer
5 salaries
unlock blur

₹1.5 L/yr - ₹2 L/yr

Graduate Engineer Trainee (Get)
5 salaries
unlock blur

₹1.8 L/yr - ₹2.4 L/yr

Explore more salaries
Compare Productive Engineers with

DXC Technology

3.7
Compare

Mphasis

3.4
Compare

Infosys BPM

3.7
Compare

WNS

3.4
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview