Upload Button Icon Add office photos

AdeptChip Services

Compare button icon Compare button icon Compare

Filter interviews by

AdeptChip Services Verification Engineer Interview Questions and Answers

Updated 5 Dec 2017

AdeptChip Services Verification Engineer Interview Experiences

1 interview found

I applied via Referral

Interview Questionnaire 

3 Questions

  • Q1. Here the technical guy is too friendly , started asking very basic questions only related to Verilog , then moved to bit deep , asked to write a code in verilog . If he is satisfied , you will be asked to ...
  • Ans. 

    Verilog is a hardware description language used for modeling electronic systems.

    • Verilog supports both behavioral and structural modeling.

    • Example of a simple module: 'module AND_gate(input a, input b, output c); assign c = a & b; endmodule'.

    • Verilog uses 'always' blocks for sequential logic.

    • Example of an 'always' block: 'always @(posedge clk) begin q <= d; end'.

    • Testbenches are crucial for verifying designs; they s...

  • Answered by AI
  • Q2. Asked related to fork - join , asked to write a code for Asynchronous D-FF and it's explanation ....
  • Q3. Here it was bit difficult , but not that much one can clear it easily if they are good enough in coding (in verilog). and next followed by HR ...

Interview Preparation Tips

Round: Test
Experience: Test comprises of 5 to 6 sections . those are like aptitude , c , Verilog ,Digital Design , VLSI and 10 questions from each section .

General Tips: If you are going to attend for Adept chips , first be through with all 5 to 6 sections for written test , next in interview concentrate on coding . If you are good at coding which shows that u r good at concepts too ...
Duration: <1 week

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about AdeptChip Services?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Basic questions, project experience, scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on basics and projects

Verification Engineer Interview Questions Asked at Other Companies

Q1. Describe your experience writing code in Verilog.
asked in Intel
Q2. How do you ensure no data loss happens in HW to SW communication?
Q3. How do you create a 2-to-1 line MUX using only NAND gates?
Q4. Explain the architecture of SoC and its components. How is transa ... read more
Q5. What is setup and hold time? How does it impact digital design?

I applied via Company Website and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Semiconductor physics Basic concepts and previous work profile experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare resume according to job profile and answer all basic questions related semiconductor device physics and digital design
Round 1 - Technical 

(2 Questions)

  • Q1. They asked about technical
  • Q2. Provide answers for the same
Round 2 - Technical 

(2 Questions)

  • Q1. They asked about technical
  • Q2. Answers according to question

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to go, they asked basic question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Model and drafting
  • Q2. GD & T AND BASIC TECHNICAL

I applied via Referral and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Manual Testing,
  • Q2.  Regression, AdHoc, UI, Functional Testing, Integration Testing.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all Manual Testing related questions. Interview is very simple and easy.
Be interview-ready. Browse the most asked HR questions.
illustration image
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - HR 

(1 Question)

  • Q1. Introduce yourself and explain project that you did
  • Ans. 

    I am a design engineer with experience in developing innovative products for various industries.

    • Designed a new ergonomic chair for a furniture company

    • Developed a solar-powered water purification system for a non-profit organization

    • Improved the efficiency of a packaging machine for a manufacturing company

  • Answered by AI
Are these interview questions helpful?

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

Interview Questionnaire 

3 Questions

  • Q1. RRC related questions, CSFB,SRVCC,SIB parameters
  • Q2. LTE configurations, Handovers, and use case scenarios. MAC HARQ processing
  • Q3. Basic C questions, pointers,strings, bit manipulation , linked list

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on protocol stacks and C basic concepts

Interview Questionnaire 

2 Questions

  • Q1. 1. Basic testing questions
  • Q2. 2. Question related to API and sql

Interview Questionnaire 

12 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I'm a passionate software engineer with a strong background in full-stack development and a love for solving complex problems.

    • Graduated with a degree in Computer Science from XYZ University.

    • Worked at ABC Corp, where I developed a web application that improved user engagement by 30%.

    • Proficient in languages like JavaScript, Python, and Java, with experience in frameworks like React and Django.

    • Enjoy collaborating in agile...

  • Answered by AI
  • Q2. Did you get placed anywhere?
  • Ans. 

    Yes, I got placed at XYZ company.

    • I received an offer from XYZ company and accepted it.

    • I will be starting my new job at XYZ company next month.

    • I am excited to join the team at XYZ company and contribute to their software development projects.

  • Answered by AI
  • Q3. If yes then why are you leaving that company??
  • Ans. 

    Looking for better growth opportunities and challenges.

    • Limited scope for learning and development

    • No clear career progression path

    • Lack of challenging projects

    • Unsatisfactory work-life balance

    • Better compensation and benefits offered by new company

  • Answered by AI
  • Q4. What do you know about our company?
  • Ans. 

    Unknown

    • I apologize, but I do not have any information about your company at this time.

  • Answered by AI
  • Q5. Some question's explaination from 1st round (Segmentation fault)
  • Ans. 

    A segmentation fault occurs when a program tries to access an invalid memory location.

    • Commonly caused by dereferencing null or uninitialized pointers.

    • Example: Accessing an array out of its bounds can lead to a segmentation fault.

    • Occurs in languages like C and C++ where manual memory management is required.

    • Can also happen due to stack overflow, such as with deep recursion.

    • Operating systems use memory protection to preve...

  • Answered by AI
  • Q6. Remove duplicates from a string
  • Ans. 

    Remove duplicates from a string

    • Convert string to char array

    • Create a HashSet to store unique characters

    • Iterate through char array and add to HashSet

    • Convert HashSet back to string

  • Answered by AI
  • Q7. Linking
  • Q8. Compilation process
  • Q9. 32 bit/64 bit processor ??
  • Ans. 

    32-bit and 64-bit processors differ in data handling capacity, memory addressing, and performance capabilities.

    • 32-bit processors can address up to 4 GB of RAM, while 64-bit processors can handle significantly more (theoretically up to 16 exabytes).

    • 64-bit processors are generally faster and more efficient, especially for applications requiring large amounts of memory.

    • Most modern operating systems and applications are op...

  • Answered by AI
  • Q10. InterProcess communication
  • Q11. Socket Programming
  • Q12. Projects

Interview Preparation Tips

Round: Test
Experience: 1. C pointer



2. Storage classes related questions



3. functions



4. OS(fragmentation external/internal)

Round: Test
Experience: 1. We have to add nodes in a linked list in sorted manner



2. Derive ur own malloc function

College Name: NA

Skills evaluated in this interview

AdeptChip Services Interview FAQs

What are the top questions asked in AdeptChip Services Verification Engineer interview?

Some of the top questions asked at the AdeptChip Services Verification Engineer interview -

  1. Here the technical guy is too friendly , started asking very basic questions on...read more
  2. Asked related to fork - join , asked to write a code for Asynchronous D-FF and ...read more

Tell us how to improve this page.

AdeptChip Services Verification Engineer Salary
based on 5 salaries
₹8.1 L/yr - ₹14.5 L/yr
16% less than the average Verification Engineer Salary in India
View more details
Physical Design Engineer
35 salaries
unlock blur

₹5.3 L/yr - ₹13.2 L/yr

Software Engineer
15 salaries
unlock blur

₹4.9 L/yr - ₹11.5 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹11.1 L/yr - ₹19.4 L/yr

Senior Physical Design Engineer
11 salaries
unlock blur

₹20 L/yr - ₹26 L/yr

Design & Verification Engineer
9 salaries
unlock blur

₹4.2 L/yr - ₹9.5 L/yr

Explore more salaries
Compare AdeptChip Services with

Carrier Midea

3.6
Compare

Mirafra Technologies

4.0
Compare

Element14

3.7
Compare

STJ Electronics

3.6
Compare
write
Share an Interview