Upload Button Icon Add office photos

Filter interviews by

Intel Senior Physical Design Engineer Interview Questions and Answers

Updated 13 Dec 2024

Intel Senior Physical Design Engineer Interview Experiences

2 interviews found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Mostly from your previous projects
  • Q2. How to resolved clock getting violation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. They asked all Technical Questions
  • Q2. THey asked about VLSI physical Design ROles and responsibilities

Senior Physical Design Engineer Interview Questions Asked at Other Companies

asked in Sivaltech
Q1. CMOS device operation

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Toggle the bits of given input
  • Ans. 

    Toggle the bits of given input

    • Create a mask with all bits set to 1

    • XOR the input with the mask to toggle the bits

    • Repeat the process for each bit position

  • Answered by AI
  • Q2. Clear the set bit
Round 2 - Technical 

(2 Questions)

  • Q1. Print the star pattern
  • Ans. 

    Print a star pattern using loops

    • Use nested loops to print the desired pattern

    • Increment the number of stars in each row to create the pattern

    • Example: for a pattern with 5 rows - * , ** , *** , **** , *****

  • Answered by AI
  • Q2. Microprocessor microcontroller topics are asked

Skills evaluated in this interview

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

I applied via campus placement at Netaji Subhas Institute of Technology (NSIT) and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude-10 question,digital moderate -Question,analog moderate -10 question,verilog and system verilog -10 question

Round 2 - One-on-one 

(3 Questions)

  • Q1. Latches and flip flop all characteristics equation and proof of the characteristics equation in flip flop.applications of flip flop
  • Q2. OOPS,INHERITANCE,VERILOG,BLOCKING - NON BLOCKING ASSIGNMENT OPERATOR and all the basic operations of verilog .
  • Q3. Discussion on work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bonafide with your fundamentals core of digital circuits and design .
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Assertions and coverage
  • Q2. Umv basic principle
  • Ans. 

    UVM (Universal Verification Methodology) basic principle is to provide a standardized methodology for verifying digital designs.

    • UVM is based on SystemVerilog and provides a framework for creating reusable verification environments

    • It promotes the use of object-oriented programming techniques for creating modular and scalable testbenches

    • UVM encourages the use of constrained-random stimulus generation and coverage-driven ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Linked list, optimisation, time complexity

Round 2 - Technical 

(1 Question)

  • Q1. Projects, os concept, c basic questions, embedded systems basics, computer architecture questions
Round 3 - HR 

(1 Question)

  • Q1. General discussion, few behaviour questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Simple FSM given similar to mux and asked for testcases and assertions.
  • Q2. Coverage to write transitions of states.
  • Ans. 

    Coverage-driven verification techniques are used to ensure all possible state transitions are exercised.

    • Coverage metrics like state, transition, and toggle coverage can be used to track the completeness of state transitions.

    • Writing directed tests to cover specific state transitions can help achieve higher coverage.

    • Random stimulus generation can also be used to explore different state transitions.

    • Functional coverage can...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of analog , digital and vlsi
  • Q2. On face to face interview, they asked me abt my projects , digital, little analog , vlsi ( verilog), microcontrollers and c programming

Interview Preparation Tips

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

I applied via LinkedIn and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

40 aptitude qns and some mcqs on basic programming

Round 2 - Technical 

(4 Questions)

  • Q1. I was asked to write two sum, palindrome function and merge sort code in whatever language I'm comfortable in
  • Q2. Two sum- return true or false
  • Ans. 

    Given an array of integers, determine if there are two numbers that add up to a specific target.

    • Iterate through the array and store each element in a hash set.

    • For each element, check if the difference between the target and the element exists in the hash set.

    • If the difference exists, return true; otherwise, continue iterating.

    • Example: nums = [2, 7, 11, 15], target = 9. The function should return true as 2 + 7 = 9.

  • Answered by AI
  • Q3. Merge sort function code
  • Q4. Palindromic string or not

Skills evaluated in this interview

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

I applied via campus placement at Sardar Vallabhbhai National Institute of Technology (NIT), Surat and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program for an ATM machine to get minimum no. of notes.
  • Ans. 

    Program to calculate minimum number of notes for ATM withdrawal

    • Create an array of available note denominations

    • Sort the array in descending order

    • Initialize a counter variable to keep track of the number of notes

    • Iterate through the array and divide the withdrawal amount by each note denomination

    • Update the counter variable with the quotient

    • Update the withdrawal amount with the remainder

    • Repeat the above steps until the wit...

  • Answered by AI
  • Q2. Can we pass an array to function.
  • Ans. 

    Yes, an array can be passed to a function in embedded firmware programming.

    • Arrays can be passed to functions by specifying the array name as the argument.

    • The function can then access and manipulate the elements of the array.

    • Example: void printArray(int arr[], int size) { ... }

    • Example: int main() { int myArray[] = {1, 2, 3}; printArray(myArray, 3); }

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations

Skills evaluated in this interview

Intel Interview FAQs

How many rounds are there in Intel Senior Physical Design Engineer interview?
Intel interview process usually has 1 rounds. The most common rounds in the Intel interview process are Technical.
How to prepare for Intel Senior Physical Design Engineer 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 Intel. The most common topics and skills that interviewers at Intel expect are Physical Design, SOC, Debugging, Floor Planning and Perl.
What are the top questions asked in Intel Senior Physical Design Engineer interview?

Some of the top questions asked at the Intel Senior Physical Design Engineer interview -

  1. how to resolved clock getting violat...read more
  2. mostly from your previous proje...read more
  3. They asked all Technical Questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 270 Interviews
Tata Electronics Interview Questions
4.0
 • 142 Interviews
Texas Instruments Interview Questions
4.1
 • 123 Interviews
Nvidia Interview Questions
3.7
 • 102 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Molex Interview Questions
3.9
 • 53 Interviews
View all
Intel Senior Physical Design Engineer Salary
based on 8 salaries
₹23 L/yr - ₹45 L/yr
92% more than the average Senior Physical Design Engineer Salary in India
View more details

Intel Senior Physical Design Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
342 salaries
unlock blur

₹13.3 L/yr - ₹52.1 L/yr

SOC Design Engineer
223 salaries
unlock blur

₹12 L/yr - ₹35 L/yr

System Validation Engineer
191 salaries
unlock blur

₹14 L/yr - ₹44 L/yr

Design Engineer
160 salaries
unlock blur

₹12.1 L/yr - ₹50.3 L/yr

Software Development Engineer
157 salaries
unlock blur

₹12 L/yr - ₹43 L/yr

Explore more salaries
Compare Intel with

Qualcomm

3.8
Compare

Nvidia

3.8
Compare

Microsoft Corporation

4.1
Compare

Advanced Micro Devices

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