Upload Button Icon Add office photos

Filter interviews by

Patidar Machine Tools Intern Interview Questions and Answers

Updated 6 Feb 2023

Patidar Machine Tools Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 6 Feb 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you measure length? Least count of VC
  • Ans. 

    Length is measured using a device with a known least count, which is the smallest unit of measurement that can be read.

    • Use a device with a known least count, such as a ruler or caliper

    • Read the measurement on the device and record it

    • The least count is the smallest unit of measurement that can be read on the device

    • For example, if the least count of a ruler is 1 mm, the length can be measured to the nearest millimeter

  • Answered by AI
  • Q2. Difference between accuracy and precision
Round 3 - Case Study 

Thermo Plastic Injection Moulding Machine types amd tonnage

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare about the company you are going for an interview. Prepare basic details about instruments and projects prepared

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Given a sorted array of integers, find the frequency of 2 in the array in log(n) time.
  • Ans. 

    Find frequency of 2 in sorted array of integers in log(n) time.

    • Use binary search to find first and last occurrence of 2 in array.

    • Calculate frequency by subtracting last index from first index and adding 1.

    • Time complexity is O(log(n)).

  • Answered by AI
  • Q2. Given an array of numbers, for each index of the array, find the maximum frequency integer to the right of the array.
  • Ans. 

    Find the maximum frequency integer to the right of each index in an array of numbers.

    • Create a frequency map of the array.

    • Iterate through the array and for each index, find the maximum frequency integer to the right using the frequency map.

    • If there are no integers to the right, return -1.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Get ready for facing data structures problems.
2. Some interviewers ask for the projects but without data structures, there is no way to pass the interview.
3. Have a decent understanding of the programming language you code in.

Skills evaluated in this interview

Intern Interview Questions & Answers

TCS user image Anonymous

posted on 2 Jun 2022

I applied via Newspaper Ad and was interviewed before Jun 2021. 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 - HR 

(1 Question)

  • Q1. Please Give introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - Good luck with your interview. You need it

I was interviewed in Sep 2016.

Interview Questionnaire 

9 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships at tech companies

  • Answered by AI
  • Q2. What did you do in your last job
  • Ans. 

    I was responsible for managing social media accounts and creating engaging content for a marketing agency.

    • Managed social media accounts for clients

    • Created content calendars and posts for various platforms

    • Analyzed engagement metrics to optimize content strategy

  • Answered by AI
  • Q3. Why do MBA
  • Ans. 

    MBA provides advanced business knowledge, skills, and networking opportunities.

    • MBA helps develop strategic thinking and leadership skills.

    • It provides a deeper understanding of business concepts and practices.

    • MBA graduates often have better job prospects and higher earning potential.

    • Networking opportunities with industry professionals and alumni can lead to valuable connections.

    • Specializations in areas like finance, mar...

  • Answered by AI
  • Q4. 3 key takeaways you want from MBA
  • Ans. 

    Key takeaways from MBA include leadership skills, strategic thinking, and networking opportunities.

    • Developing strong leadership skills through coursework and group projects

    • Learning strategic thinking and decision-making through case studies and simulations

    • Building a strong professional network through internships, networking events, and alumni connections

  • Answered by AI
  • Q5. Why cognizant
  • Ans. 

    Cognizant offers a diverse range of opportunities for growth and development in the IT industry.

    • Cognizant is a global leader in IT services and consulting.

    • They have a strong reputation for delivering high-quality solutions to clients.

    • Cognizant provides a collaborative and inclusive work environment.

    • They offer extensive training and learning programs to enhance skills.

    • Cognizant has a strong focus on innovation and digit...

  • Answered by AI
  • Q6. Describe 2 case studies you learnt in college
  • Ans. 

    Studied case studies on marketing strategies and ethical dilemmas in business.

    • Analyzed a case study on how Coca-Cola's marketing strategies helped increase sales and brand awareness.

    • Discussed a case study on a company facing an ethical dilemma and the consequences of their decisions.

    • Explored the impact of social media on consumer behavior in a case study on a successful marketing campaign.

  • Answered by AI
  • Q7. Your goals in life
  • Ans. 

    My goal in life is to make a positive impact on others and contribute to the betterment of society.

    • To work towards improving healthcare access and quality

    • To advocate for social justice and equality

    • To continuously learn and grow both personally and professionally

    • To build meaningful relationships and support others in their journeys

    • To leave a lasting legacy that inspires future generations

  • Answered by AI
  • Q8. A situation in which you handled a disagreement
  • Ans. 

    I resolved a disagreement between two team members by facilitating a meeting and encouraging open communication.

    • Identified the root cause of the disagreement

    • Scheduled a meeting with both parties to discuss the issue

    • Encouraged open communication and active listening

    • Facilitated a compromise that satisfied both parties

  • Answered by AI
  • Q9. A situation where you showcased your leadership skills

Interview Preparation Tips

Round: Other Interview
Experience: It was a video interview. The questions were displayed one by one. For each question, a fixed time was given (2 to 4 mins). The video response got recorded for each question
Tips: Dress well as someone will review the video later. Sit in a well lit room with a white background. Prepare Competency based questions well

Round: HR Interview
Experience: Typical HR round
Tips: At the end, when the interviewer says, "do you have any question for me", then always ask a relevant question.

Round: HR Interview
Experience: Again typical HR round
Tips: Prepare well about the company. That helps a lot in interview. Try to include what the company is doing in your answers. Should feel natural

I was interviewed in Aug 2016.

Interview Questionnaire 

3 Questions

  • Q1. To reverse Linked List in pair of three.
  • Ans. 

    Reverse a linked list in pairs of three.

    • Create a function that takes the head of the linked list as input.

    • Traverse the linked list in pairs of three and reverse each pair.

    • Update the head of the linked list to the new head after reversing each pair.

    • Return the new head of the linked list.

  • Answered by AI
  • Q2. Search a number in sorted rotated array.
  • Ans. 

    Search a number in sorted rotated array.

    • Use binary search to find the pivot point where the array is rotated

    • Determine which half of the array the target number may be in

    • Perform binary search on the appropriate half of the array to find the target number

  • Answered by AI
  • Q3. A dynamic programming question was there to find a path in matrix.

Interview Preparation Tips

Round: Technical Interview
Experience: Interviewer mainly focused on problem solving skill.

Skills: Algorithm
College Name: KIIT University

Skills evaluated in this interview

Intern Interview Questions & Answers

Amazon user image Himani Anand1

posted on 28 Oct 2015

Interview Questionnaire 

1 Question

  • Q1. Binary Tree concepts

Interview Preparation Tips

Round: Test
Experience:
Tips:
Duration: 120 minutes
Total Questions: 22

Round: Technical Interview
Experience:
Tips:

General Tips:
Skill Tips:
Skills: Algorithmic Approach To Problem Solving, Data Structures, Core Courses Concepts
College Name: IIM Lucknow

I applied via Campus Placement and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

All the best

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do it Minimum 30 characters required. Give interview advice in detai

I applied via Campus Placement and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OOP concepts, Networking basics,

Interview Preparation Tips

Interview preparation tips for other job seekers - Its easy to pass the interview for fresher, you need to have good aptitude skills

I was interviewed before Jul 2021.

Round 1 - Technical 

(2 Questions)

  • Q1. About your project and s1kills
  • Q2. Interview went well .

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare atleast one language or technology

Intern Interview Questions & Answers

Wipro user image Somraj Vishnoi

posted on 30 May 2017

I was interviewed in Mar 2017.

Interview Questionnaire 

2 Questions

  • Q1. 1. Give your brief introduction. 2. Tell about your projects. 3. Do you think that demonetization was effective? 4. How do you implement effectively digital currency so that everyone can use it?
  • Q2. 1. Introduction 2. Tell me something about you which is interesting.
  • Ans. 

    I am a certified scuba diver and have explored coral reefs in multiple countries.

    • Certified scuba diver

    • Explored coral reefs in multiple countries

    • Passionate about marine life and conservation

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test comprised of total 30 questions. There were some questions of quantitative, reasoning abd verbal aptitude. There were some questions of C language and data structures and some were from Digital Electronics and communications. All questions were MCQs.
Duration: 30 minutes
Total Questions: 30

Round: Technical Interview
Experience: This interview experience was quite interesting for me because i had no technical project to discuss with them. Do wisely i diverted interview towards demonetization and digital economy and i answered in detail with good example. So he got impressed. A guy from my batch gaving very nice projects in commucation engineering got rejected in this round because he didn't know data structures.

Round: HR Interview
Experience: The HR guy was very chill and was in hurry so he didn't asked something very hard question to be answerable. He discuseed about my family background and my future plans.

Skills: Communication And Confidence
College Name: NIT Kurukshetra

Patidar Machine Tools Interview FAQs

How many rounds are there in Patidar Machine Tools Intern interview?
Patidar Machine Tools interview process usually has 3 rounds. The most common rounds in the Patidar Machine Tools interview process are Case Study, Resume Shortlist and One-on-one Round.
What are the top questions asked in Patidar Machine Tools Intern interview?

Some of the top questions asked at the Patidar Machine Tools Intern interview -

  1. How do you measure length? Least count of...read more
  2. Difference between accuracy and precis...read more

Tell us how to improve this page.

Patidar Machine Tools Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Intern Interview Questions from Similar Companies

TCS Intern Interview Questions
3.7
 • 35 Interviews
Amazon Intern Interview Questions
4.1
 • 26 Interviews
Infosys Intern Interview Questions
3.6
 • 22 Interviews
Deloitte Intern Interview Questions
3.8
 • 22 Interviews
IBM Intern Interview Questions
4.0
 • 14 Interviews
Wipro Intern Interview Questions
3.7
 • 11 Interviews
View all
Compare Patidar Machine Tools with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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