Upload Button Icon Add office photos

Filter interviews by

PICL Mechanical Engg. Design Interview Questions and Answers

Updated 22 Feb 2021

PICL Mechanical Engg. Design Interview Experiences

1 interview found

Interview Questionnaire 

3 Questions

  • Q1. 1.knowledge regarding the design and development of Aluminium Pressure die casting,sheet metal parts, injection molding.
  • Q2. 2.knowledge regarding the components of Induction motor & it's function.
  • Q3. 3.software proficiency in Solidworks 2019.
  • Ans. 

    Proficient in Solidworks 2019 with experience in designing complex mechanical systems.

    • Expertise in creating 3D models, assemblies, and drawings

    • Ability to perform simulations and analysis using Solidworks Simulation

    • Experience in designing complex mechanical systems such as robotic arms and automated machinery

    • Proficient in using Solidworks PDM for managing design data

    • Familiarity with Solidworks Electrical for designing e...

  • Answered by AI

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. DS and Algo questions based on DP and backtracking
  • Q2. Clone linked list with random pointers.
  • Ans. 

    Clone a linked list with random pointers.

    • Create a new node for each node in the original list.

    • Store the mapping between the original and cloned nodes in a hash table.

    • Traverse the original list again and set the random pointers in the cloned list using the hash table.

    • Return the head of the cloned list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly DS and Algo rounds followed by design rounds. Sometimes there can be language specific questions.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Bitwise operation and memory layout in c
  • Ans. 

    Bitwise operations are used to manipulate individual bits in memory. Memory layout in C refers to how data is stored in memory.

    • Bitwise operations include AND, OR, XOR, and NOT.

    • They are often used for tasks like setting or clearing specific bits, checking if a bit is set, or toggling bits.

    • Memory layout in C determines how variables are stored in memory, including their size, alignment, and order.

    • It is important to under...

  • Answered by AI
  • Q2. Explain few terms in LTE
  • Ans. 

    LTE stands for Long-Term Evolution, a standard for wireless communication in mobile networks.

    • LTE is a 4G wireless communication technology

    • It provides high-speed data transmission and low latency

    • LTE uses OFDMA for downlink and SC-FDMA for uplink

    • LTE supports multiple antennas for improved signal quality (MIMO)

    • LTE Advanced (LTE-A) is an enhanced version with higher data rates and capacity

  • Answered by AI
  • Q3. In one path goes wrong in mimo does snr and data both or any one goes bad

Skills evaluated in this interview

I applied via Referral and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic c programming
  • Q2. Previous experience questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest. And prepare well in data structures
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Pointer and linked list

Round 3 - Case Study 

Pure technical on kernel programming

Round 4 - Technical 

(3 Questions)

  • Q1. Pure technical questions on background project
  • Q2. Mutex semaphore and spinlock
  • Q3. How you will achieve multi threaded programming
  • Ans. 

    Multi-threaded programming can be achieved by creating multiple threads that run concurrently.

    • Identify the tasks that can be executed in parallel

    • Create threads using threading libraries in the chosen programming language

    • Synchronize the threads to avoid race conditions and deadlocks

    • Use locks, semaphores, and mutexes to manage shared resources

    • Optimize the performance by balancing the workload among threads

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Why you want to join this company
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. This was more like shortlisting round with manager. Asked about resume and previous work experience. Not much Technical questions.
Round 3 - One-on-one 

(5 Questions)

  • Q1. Python programming questions, Basics
  • Q2. Python oops concepts
  • Q3. What is module in Python
  • Ans. 

    A module in Python is a file containing Python code, which can define functions, classes, and variables.

    • Modules help organize Python code into reusable components

    • Modules can be imported into other Python scripts using the 'import' keyword

    • Examples of modules in Python include math, random, and os

  • Answered by AI
  • Q4. Python memory management
  • Q5. Basic Devops questions

Skills evaluated in this interview

Interview experience
5
Excellent
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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Get your basic coding skills right
  • Q2. Snippets for all concepts
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Give a code and write coding or debug
  • Ans. 

    Provide a code snippet and explain how to debug it

    • Identify the specific error message or issue in the code

    • Check for syntax errors, missing brackets, or typos

    • Use debugging tools like console.log or breakpoints to track the flow of the code

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn everything in resume

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain storage variables in C?
  • Ans. 

    Storage variables in C are used to store data temporarily during program execution.

    • Storage variables in C are declared using data types like int, float, char, etc.

    • They can be stored in different memory locations like stack, heap, or data segment.

    • Variables declared outside functions have global scope and are stored in data segment.

    • Variables declared inside functions have local scope and are stored in stack memory.

    • Dynami...

  • Answered by AI
  • Q2. Take two numbers, reverse both, then perform addition and reverse again?
  • Q3. First three kinds of sorting
  • Ans. 

    The first three kinds of sorting are bubble sort, selection sort, and insertion sort.

    • Bubble sort compares adjacent elements and swaps them if they are in the wrong order.

    • Selection sort selects the smallest element and swaps it with the first element, then selects the second smallest element and swaps it with the second element, and so on.

    • Insertion sort builds the final sorted array one item at a time by inserting each

  • Answered by AI
  • Q4. Output questions based on pointers in C

Interview Preparation Tips

Topics to prepare for Ignitarium Technology Solutions Senior Engineer interview:
  • C
  • Data Structures
  • Embedded Systems

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Excel questions
  • Q2. Usecase of if, vlookup, sumif, excercise for data cleaning and proper function
  • Ans. 

    Using if, vlookup, sumif for data cleaning and proper function in Excel

    • Use IF function to create conditional statements for data cleaning

    • Use VLOOKUP function to search for a value in a table and return a corresponding value

    • Use SUMIF function to sum values based on a specific condition

    • Exercise: Use IF function to categorize data into different groups based on a condition

    • Exercise: Use VLOOKUP function to retrieve employe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of questions will based on your resume and technical domain

PICL Interview FAQs

What are the top questions asked in PICL Mechanical Engg. Design interview?

Some of the top questions asked at the PICL Mechanical Engg. Design interview -

  1. 3.software proficiency in Solidworks 20...read more
  2. 1.knowledge regarding the design and development of Aluminium Pressure die cast...read more
  3. 2.knowledge regarding the components of Induction motor & it's functi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

KLA Interview Questions
3.7
 • 43 Interviews
Element14 Interview Questions
4.0
 • 15 Interviews
MaxLinear Interview Questions
3.0
 • 12 Interviews
STJ Electronics Interview Questions
3.6
 • 11 Interviews
Xilinx Interview Questions
4.2
 • 8 Interviews
Wafer Space Interview Questions
3.9
 • 8 Interviews
View all
PICL Mechanical Engg. Design Salary
based on 8 salaries
₹3 L/yr - ₹5 L/yr
8% less than the average Mechanical Engg. Design Salary in India
View more details

PICL Mechanical Engg. Design Reviews and Ratings

based on 2 reviews

2.1/5

Rating in categories

2.1

Skill development

1.1

Work-life balance

2.1

Salary

3.0

Job security

1.1

Company culture

2.1

Promotions

1.1

Work satisfaction

Explore 2 Reviews and Ratings
Assistant Manager
24 salaries
unlock blur

₹6 L/yr - ₹9.3 L/yr

Senior Engineer
21 salaries
unlock blur

₹4.7 L/yr - ₹7.2 L/yr

Engineer
20 salaries
unlock blur

₹2.4 L/yr - ₹5.8 L/yr

Quality Engineer
17 salaries
unlock blur

₹1.7 L/yr - ₹3.8 L/yr

Graduate Engineer Trainee (Get)
16 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Explore more salaries
Compare PICL with

Samsung Semiconductor

3.5
Compare

STJ Electronics

3.6
Compare

Element14

4.0
Compare

Autocop India

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