Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by SmartSoC Solutions Team. If you also belong to the team, you can get access from here

SmartSoC Solutions Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 71 Reviews

Filter interviews by

SmartSoC Solutions Physical Design Engineer Interview Questions and Answers

Updated 22 Sep 2021

SmartSoC Solutions Physical Design Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How to catch a missing tie cell issue using calibre ?
  • Ans. 

    To catch a missing tie cell issue using calibre, run DRC check with appropriate rule deck.

    • Create a rule deck with tie cell rules

    • Run DRC check using the rule deck

    • Check the DRC report for any missing tie cell violations

    • Fix the violations and re-run DRC check

    • Repeat until all violations are fixed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Great experience. The interview went very smooth

Skills evaluated in this interview

Physical Design Engineer Jobs at SmartSoC Solutions

View all

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aotitude,core que on all subjects in ece

Round 2 - Technical 

(2 Questions)

  • Q1. INTERNSHIP EXPERIENCE
  • Ans. 

    I completed a 6-month internship at XYZ Company where I gained hands-on experience in physical design tools and methodologies.

    • Worked on floorplanning, placement, and routing of digital designs

    • Utilized tools such as Cadence Innovus and Synopsys ICC

    • Collaborated with cross-functional teams to optimize design performance

  • Answered by AI
  • Q2. ON DSD,VLSI,ANALOG ELECTRONICS
Round 3 - HR 

(2 Questions)

  • Q1. APTITUDE,MATH,VLSI,DSD
  • Q2. VLSI (HARD QUESTION BASED ON INDUSTRY LEVEL LIKE ON CIRCUIT HE GIVES ONE SCENARIO U HAVE TO ANSWER IT)

Interview Preparation Tips

Interview preparation tips for other job seekers - LEARN BASICS WELL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2023.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain the PD flow?
  • Ans. 

    PD flow is the process of designing and implementing the physical layout of an integrated circuit.

    • PD flow involves floorplanning, placement, routing, and physical verification.

    • Floorplanning determines the placement of blocks and macros on the chip.

    • Placement involves placing standard cells in the available space based on timing and area constraints.

    • Routing connects the placed cells using metal layers to create the final...

  • Answered by AI
  • Q2. Asked related to floor planning ?
  • Q3. How to fix antenna violation?
  • Ans. 

    Antenna violations can be fixed by adjusting the metal layers, adding shielding, or changing the routing.

    • Adjust metal layers to increase spacing between antennas

    • Add shielding to isolate antennas from each other

    • Change routing to avoid crossing antennas

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Sv hvm questions on constraiants and assertions
  • Q2. Questions on resume projects
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on protocols
  • Q2. Sv uvm questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary and pckge discussion
  • Q2. Details on client interview
Round 4 - Client Interview 

(2 Questions)

  • Q1. Projects and challenges
  • Q2. Sv uvm basics
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. They asked from Digital, COA
Round 2 - Technical 

(1 Question)

  • Q1. They asked the concepts of COA
Round 3 - HR 

(1 Question)

  • Q1. First started with Puzzle and then about company
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
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked the working experience and the related skills to the new job
Round 2 - Technical 

(1 Question)

  • Q1. Coding questions in Verilog, Systemverilog, random constraints such as how to write a onehot in different ways
Round 3 - HR 

(1 Question)

  • Q1. Asked the expectation of the base salary and overall compensation

Interview Preparation Tips

Topics to prepare for Micron Technology Verification Engineer interview:
  • SystemVerilog coding

SmartSoC Solutions Interview FAQs

How to prepare for SmartSoC Solutions 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 SmartSoC Solutions. The most common topics and skills that interviewers at SmartSoC Solutions expect are Physical Design, Floor Planning, PNR, STA and Timing Closure.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
SmartSoC Solutions Physical Design Engineer Salary
based on 31 salaries
₹2 L/yr - ₹9 L/yr
42% less than the average Physical Design Engineer Salary in India
View more details

SmartSoC Solutions Physical Design Engineer Reviews and Ratings

based on 4 reviews

1.5/5

Rating in categories

1.6

Skill development

1.4

Work-life balance

1.3

Salary

2.1

Job security

1.5

Company culture

1.4

Promotions

1.4

Work satisfaction

Explore 4 Reviews and Ratings
Physical Design Engineer

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Explore more jobs
Physical Design Engineer
31 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Engineer
27 salaries
unlock blur

₹9 L/yr - ₹25 L/yr

Verification Engineer
20 salaries
unlock blur

₹4.1 L/yr - ₹14.5 L/yr

Design & Verification Engineer
10 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Embedded Engineer
9 salaries
unlock blur

₹3.5 L/yr - ₹12.4 L/yr

Explore more salaries
Compare SmartSoC Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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