Upload Button Icon Add office photos

Filter interviews by

Precision Electronics Interview Questions and Answers

Updated 19 Jun 2024

Precision Electronics Interview Experiences

Popular Designations

3 interviews found

Regional Manager South Interview Questions & Answers

user image MANOJ KUMAR VERMA

posted on 19 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How is market scenario
  • Ans. 

    The market scenario is dynamic and competitive, with changing consumer preferences and technological advancements.

    • Market trends are constantly evolving, requiring adaptability and innovation.

    • Competition is fierce, with new entrants and disruptive technologies reshaping the industry.

    • Consumer behavior is influenced by factors such as economic conditions, social trends, and technological advancements.

    • Market research and a...

  • Answered by AI
  • Q2. How ill you achieve your targets

Interview Preparation Tips

Interview preparation tips for other job seekers - Please bee prepared for interview and come

Regional Manager South Interview Questions asked at other Companies

Q1. Timeline for PEB structure from concept to operation
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Technical production. Main power handling

Production Supervisor Interview Questions asked at other Companies

Q1. What is the responsibility of production supervisor?
View answer (48)

Mechanical Engineer Interview Questions & Answers

user image AKSHAT BENIWAL

posted on 10 Oct 2023

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2023. 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. Types of gear in watch
  • Ans. 

    Types of gears commonly found in watches include spur gears, helical gears, and planetary gears.

    • Spur gears are the most common type of gear found in watches, with straight teeth that are parallel to the gear's axis.

    • Helical gears have angled teeth that are more efficient and quieter than spur gears.

    • Planetary gears are compact and provide high gear ratios, commonly used in watch movements.

  • Answered by AI
  • Q2. Types of engines parameters
  • Ans. 

    Engine parameters include power output, torque, fuel efficiency, emissions, and thermal efficiency.

    • Power output: the amount of power produced by the engine, measured in horsepower or kilowatts.

    • Torque: the rotational force produced by the engine, important for acceleration and towing capacity.

    • Fuel efficiency: the amount of fuel consumed per unit of distance traveled, measured in miles per gallon or liters per kilometer.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good communication skill with good knowldege of solidworks

Mechanical Engineer Interview Questions asked at other Companies

Q1. What we need to do if pressure valve fail in boiler
View answer (8)

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Questions of OS, OOPs Conepts, datastructures and Algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn every topic thoruoghly, they ask little of everything for internship

I applied via Company Website and was interviewed in Jun 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Everything from resume only
  • Q2. Recursive programs, factorial, prime numbers, Armstrong numbers
  • Q3. Time complexity
  • Q4. Microservices, rest API, gateway

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience has been extremely warm and beautiful. All rounds finished on a single day. Which is the most great thing about being interviewed. No such tension of just waiting for results and how many rounds. Everything was super clear cut mentioned before in hand by HR. Also Hr people, I have never seen such supportive and helpful hr in my career till now. No attitude that u feel insulted of contacting them. U can easily reach out to them. It's a worthy excellent experience!

I applied via Campus Placement and was interviewed before Aug 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 - Coding Test 

2 coding questions and a set of mcq questions based on oops, dbms, networking and os

Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list

    • Iteratively swap the next and previous pointers of each node

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the head pointer to the last node after reversing

  • Answered by AI
  • Q2. What is the point of BST?
  • Ans. 

    BST is a data structure used for efficient searching, insertion and deletion of elements in a sorted manner.

    • BST stands for Binary Search Tree.

    • It has a root node and every node has at most two children.

    • The left subtree of a node contains only nodes with keys lesser than the node's key.

    • The right subtree of a node contains only nodes with keys greater than the node's key.

    • BST allows for efficient searching, insertion and d...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard. Learn from your mistakes. It is okay to lose sometimes.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Simple
  • Q2. Based on experience

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

This was the initial round consisting of some aptitude questions,technical multiple choice questions and one coding question.
The Multiple Choice Questions were pretty straight forward.

  • Q1. 

    Snake and Ladder Problem Statement

    Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, f...

  • Ans. 

    Find the minimum number of dice throws required to reach the last cell on a 'Snake and Ladder' board.

    • Start from the bottom left cell and move according to dice outcomes (1-6).

    • Utilize snakes and ladders to reach the last cell faster.

    • Keep track of the minimum number of throws required to reach the last cell.

    • If unreachable, return -1 as output.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

I had two interviewers in this round.Some Problem solving questions were asked in this round.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Check if two strings are anagrams of each other by comparing their sorted characters.

    • Sort the characters of both strings and compare them.

    • Use a dictionary to count the frequency of characters in each string and compare the dictionaries.

    • Ensure both strings have the same length before proceeding with comparison.

    • Example: For input 'spar' and 'rasp', after sorting both strings, they become 'aprs' which are equal, so return

  • Answered by AI
  • Q2. Can you explain all the main Object Oriented Programming concepts?
  • Ans. 

    Object Oriented Programming concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class). Example: Class Car with properties like color and methods like drive().

    • Inheritance: Creating new classes based on existing classes, inheriting their attributes and methods. Example: Class SUV inheriting from class Car.

    • Polymor...

  • Answered by AI
  • Q3. Can you explain one of your projects?
Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Easy

Number Of Interviewers : 2
I was asked two problem solving questions and I was asked to explain my projects.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteria7 CGPA, No backlog history, Only students of particular branches could applyCisco interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Object Oriented Programming Concepts, Operating Systems, Database Management Systems, Computer Communication NetworksTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Focus on mastering the concept and then you'll be able to solve problems
Tip 2 : Do not get demotivated,it's common to get rejected by MNCs.Once you are well prepared,you will end up with the right offer

Application resume tips for other job seekers

Tip 1 : Be thorough with every single word mentioned in your resume.
Tip 2 : Don't mention projects unless you have a complete understanding of the technologies used in the project.

Final outcome of the interviewSelected

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 Feb 2022. There were 2 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic javascript questions
  • Q2. Opps concepts of PHP

Interview Preparation Tips

Interview preparation tips for other job seekers - All questions are related to my past experience and projects

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The test was in the evening which was not too late. It was conducted on Hackerrank which is a very common platform and was hence familiar. There were 26 questions:
Q1: Coding Question
3 languages were allowed: c, java8, python3
Q2 - Q26: Multiple Choice Questions

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find the lengths and the last nodes

    • Align the starting points of both lists by moving the longer list's pointer ahead by the difference in lengths

    • Traverse both lists simultaneously until a common node is found, which is the merging point

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaDegree & Specialisation : B.Tech (Computer Science) B.Tech (Information Technology) B.Tech (Electronics & Communication) B.Tech (Electrical & Electronics) MCA M.Sc (Computer Science), Year of Graduation : 2021, CGPA : 7.5 and above, No Current BacklogsCisco interview preparation:Topics to prepare for the interview - Data Communication and Networks, Data Structures, SQL, OOPS, C, C++, JavaTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice competitive programming as much as possible. It's never too late. Start now. But it is important to practice before appearing for the paper.
Tip 2 : Try to start making projects early on as it plays a major role during the interviews. 
Tip 3 : Be involved in extra curricular activities and events like Hackathons even if you don't win all of them. It gives a lot of exposure and experience.
Tip 4 : Don't lose touch with your core subjects.
Tip 5 : An internship/training from a good organization always helps (though don't lose hope if you don't have it).
Tip 6 : Focus on your communication skills along with your core subjects as it helps in giving a good impression during the interviews.

Application resume tips for other job seekers

Tip 1 : Maintain a good CGPA (above 7.5)
Tip 2 : Mention your projects as they are noticed in the interview
Tip 3 : Having an internship experience especially from a good organization helps
Tip 4 : Focus on extra curricular activities too
Tip 5 : Do not put things you are not sure about

Final outcome of the interviewRejected

Skills evaluated in this interview

Precision Electronics Interview FAQs

How many rounds are there in Precision Electronics interview?
Precision Electronics interview process usually has 1-2 rounds. The most common rounds in the Precision Electronics interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Precision Electronics interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Precision Electronics. The most common topics and skills that interviewers at Precision Electronics expect are MCB, Electricals, Lighting, Dealing and Distribution.
What are the top questions asked in Precision Electronics interview?

Some of the top questions asked at the Precision Electronics interview -

  1. How is market scena...read more
  2. Types of gear in wa...read more
  3. Types of engines paramet...read more

Tell us how to improve this page.

Precision Electronics Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Siemens Interview Questions
4.1
 • 422 Interviews
View all

Precision Electronics Reviews and Ratings

based on 31 reviews

4.2/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

3.7

Salary

3.6

Job security

3.8

Company culture

3.3

Promotions

3.8

Work satisfaction

Explore 31 Reviews and Ratings
Associate Engineer
7 salaries
unlock blur

₹1.9 L/yr - ₹5.4 L/yr

Store Executive
7 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Engineer
6 salaries
unlock blur

₹2.2 L/yr - ₹5.2 L/yr

Senior Executive - Stores
5 salaries
unlock blur

₹3.6 L/yr - ₹4.5 L/yr

Deputy Manager
5 salaries
unlock blur

₹10.6 L/yr - ₹12 L/yr

Explore more salaries
Compare Precision Electronics with

Sterlite Technologies

3.8
Compare

Cisco

4.2
Compare

Redington

4.0
Compare

Vindhya Telelinks

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