Upload Button Icon Add office photos

Filter interviews by

DXCorr Hardware Technologies Vlsi Engineer Interview Questions and Answers

Updated 14 Jul 2024

DXCorr Hardware Technologies Vlsi Engineer Interview Experiences

1 interview found

Vlsi Engineer Interview Questions & Answers

user image SNEHA HAZRA

posted on 14 Jul 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There are 20 question related electronics

Round 2 - Technical 

(2 Questions)

  • Q1. What is latch up
  • Ans. 

    Latch up is a condition in integrated circuits where a parasitic thyristor is inadvertently triggered, causing a high current flow and potential damage to the circuit.

    • Latch up occurs when a parasitic thyristor in the IC is triggered, causing a short circuit between power and ground.

    • It can lead to a high current flow, potentially damaging the circuit.

    • Latch up can be triggered by high voltage spikes, electromagnetic inte...

  • Answered by AI
  • Q2. What are the fabrication process
  • Ans. 

    Fabrication process in VLSI involves multiple steps to create integrated circuits on silicon wafers.

    • Photolithography: transferring circuit patterns onto silicon wafers

    • Etching: removing unwanted material using chemicals

    • Deposition: adding new material onto the wafer

    • Ion implantation: introducing dopants to alter conductivity

    • Annealing: heating the wafer to activate dopants and repair damage

    • Testing and packaging: final step

  • Answered by AI

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Computer architecture questions like pipeline, FIFO, synchronisers, cache

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was good and wanted to extract maximum out of you
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
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write a FIFO checker
  • Ans. 

    A FIFO checker is a verification component used to monitor and validate the behavior of a First-In-First-Out buffer in a design.

    • Implement a monitor that tracks the input and output operations of the FIFO buffer

    • Check that the data is read out in the same order it was written in

    • Verify that the FIFO buffer does not overflow or underflow

    • Use assertions to flag any violations of FIFO behavior

    • Example: Monitor the write and re...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Write code randc behaviour
  • Ans. 

    randc behavior generates random complex numbers with specified distribution

    • Use randc to generate random complex numbers

    • Specify distribution using arguments like mean, variance, etc.

    • Example: randc(10, 1, 2) generates 10 random complex numbers with mean 1 and variance 2

  • Answered by AI
  • Q2. Functinal coverage
  • Q3. Code coverage related questions
  • Q4. Monitor and scoreboard connections
  • Q5. Project related questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic question of sv like swapping no.
  • Q2. Question from projects
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
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

DXCorr Hardware Technologies Interview FAQs

How many rounds are there in DXCorr Hardware Technologies Vlsi Engineer interview?
DXCorr Hardware Technologies interview process usually has 2 rounds. The most common rounds in the DXCorr Hardware Technologies interview process are Aptitude Test and Technical.
What are the top questions asked in DXCorr Hardware Technologies Vlsi Engineer interview?

Some of the top questions asked at the DXCorr Hardware Technologies Vlsi Engineer interview -

  1. What are the fabrication proc...read more
  2. What is latch...read more

Tell us how to improve this page.

DXCorr Hardware Technologies Vlsi Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 273 Interviews
Intel Interview Questions
4.2
 • 220 Interviews
Tata Electronics Interview Questions
4.0
 • 144 Interviews
Texas Instruments Interview Questions
4.1
 • 124 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Molex Interview Questions
3.9
 • 53 Interviews
View all
DXCorr Hardware Technologies Vlsi Engineer Salary
based on 23 salaries
₹3 L/yr - ₹6.8 L/yr
7% less than the average Vlsi Engineer Salary in India
View more details

DXCorr Hardware Technologies Vlsi Engineer Reviews and Ratings

based on 3 reviews

3.5/5

Rating in categories

2.3

Skill development

3.7

Work-life balance

2.3

Salary

2.3

Job security

3.7

Company culture

3.0

Promotions

3.7

Work satisfaction

Explore 3 Reviews and Ratings
Vlsi Engineer
23 salaries
unlock blur

₹3 L/yr - ₹6.8 L/yr

Amts
18 salaries
unlock blur

₹3.8 L/yr - ₹7.7 L/yr

Software Developer
6 salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Physical Design Engineer
6 salaries
unlock blur

₹5 L/yr - ₹9.2 L/yr

Memory Circuit Design Engineer
5 salaries
unlock blur

₹4.5 L/yr - ₹10.7 L/yr

Explore more salaries
Compare DXCorr Hardware Technologies with

Innovace Technology Solutions

1.0
Compare

Gigabyte Technology

4.1
Compare

Tata Electronics

4.0
Compare

Intel

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