Upload Button Icon Add office photos

L&T Technology Services

Compare button icon Compare button icon Compare

Filter interviews by

L&T Technology Services Asic Design Verification Engineer Interview Questions and Answers

Updated 4 Aug 2023

L&T Technology Services Asic Design Verification Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Aug 2022. There were 2 interview rounds.

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. Had direct technical interview that spanned over 1 and 30 Hours. Topics were purely based on system verilog and verilog. Also the interviewer touched topics from test bench devlopment and previous projects...
  • Q2. Whats a bus functional model and how it's written
  • Ans. 

    A bus functional model is a high-level model of a bus protocol used for verification. It is written in a hardware description language.

    • A bus functional model simulates the behavior of a bus protocol in a verification environment.

    • It is written in a hardware description language like SystemVerilog or VHDL.

    • The model includes the functionality of the bus protocol such as transactions, timing, and error handling.

    • It is used ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on the projects worked and have clear idea of basics and semiconductor development. Attitude on approaching the question has higher importance.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is polymorphism
  • Q2. What is inheritance
Round 2 - HR 

(1 Question)

  • Q1. Discussion about salary and bond
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are storage class
  • Ans. 

    Storage classes in C specify the scope and lifetime of variables.

    • Storage classes include auto, register, static, and extern.

    • Auto variables are local to a block and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared in one file and can be used in another file.

  • Answered by AI
  • Q2. Explain structure program
  • Ans. 

    A structure program is a program that uses structures to group related data together.

    • Structures in C programming allow you to group related data together under one name.

    • You can define a structure using the 'struct' keyword.

    • Structures can contain different data types, including int, float, char, and even other structures.

    • You can access the members of a structure using the dot operator.

    • Example: struct employee { int id; ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Network theory (R, L, C, filter, circuit behavior), analog electronics (Opamp, BJT), Oscilloscope (how to use to measure parameters),
Round 2 - HR 

(1 Question)

  • Q1. Current ctc, expected ctc. Also, about career path journey. why you left your last job or previous job?
Round 3 - One-on-one 

(1 Question)

  • Q1. Three people will take the interview, one by one. They also ask some basic circuit questions and experience. Prepare your resume well. They will pick some keywords from your resume and frame questions abou...

Interview Preparation Tips

Interview preparation tips for other job seekers - subjective knowledge is basic. Prepare your resume as well. One person from the panel focuses on your experience only.

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Basic c datastructucture networking l2 l3 questions

Round 2 - Technical 

(5 Questions)

  • Q1. Question on projects.
  • Q2. How packet goes from source to destination.
  • Ans. 

    Packets are sent from source to destination through a series of network devices using routing protocols.

    • Packet is created at the source with source and destination IP addresses.

    • Packet is sent to the default gateway or router.

    • Router checks its routing table to determine the next hop for the packet.

    • Packet is forwarded to the next hop until it reaches the destination.

    • Destination receives the packet and sends an acknowledg

  • Answered by AI
  • Q3. Delete a node from single linked list.
  • Ans. 

    To delete a node from a single linked list, we need to find the node and update the pointers.

    • Traverse the list to find the node to be deleted

    • Update the previous node's pointer to point to the next node

    • Free the memory of the node to be deleted

  • Answered by AI
  • Q4. Dynamic memory alocation in c
  • Ans. 

    Dynamic memory allocation in C allows allocation of memory at runtime.

    • Dynamic memory allocation is done using functions like malloc(), calloc(), realloc() and free().

    • malloc() allocates memory block of specified size and returns a pointer to the first byte of allocated memory.

    • calloc() allocates memory block of specified size and initializes all bits to zero.

    • realloc() changes the size of previously allocated memory block...

  • Answered by AI
  • Q5. Interprocess communication in OS
  • Ans. 

    Interprocess communication is a mechanism that allows processes to communicate with each other in an OS.

    • IPC mechanisms include pipes, sockets, message queues, shared memory, and signals.

    • IPC can be used for synchronization, data sharing, and coordination between processes.

    • IPC can be implemented using system calls such as fork(), pipe(), socket(), and msgget().

  • Answered by AI

Interview Preparation Tips

Topics to prepare for LTIMindtree Embedded Engineer interview:
  • Pointer array structure linked l
Interview preparation tips for other job seekers - Slove c problems and clear all basic concepts.

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Program to reverse an array
  • Ans. 

    Program to reverse an array of strings

    • Create a function that takes an array of strings as input

    • Use a loop to iterate through the array and swap elements from start to end

    • Return the reversed array

  • Answered by AI
  • Q2. Program to count the number of words in a string
  • Ans. 

    Program to count the number of words in a string using array of strings.

    • Split the string into an array of strings using a delimiter like space.

    • Iterate through the array and count the number of elements.

    • Handle edge cases like multiple spaces between words.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is polymorphism
  • Q2. What is inheritance
Round 2 - HR 

(1 Question)

  • Q1. Discussion about salary and bond

I applied via Recruitment Consulltant and was interviewed in May 2022. There were 2 interview rounds.

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 

(1 Question)

  • Q1. Write a code by using recursive function. Basic embedded C questions

Interview Preparation Tips

Topics to prepare for LTIMindtree Embedded Firmware Engineer interview:
  • C
  • Embedded C
  • SPI
  • I2C
Interview preparation tips for other job seekers - Clear basic embedded C concepts. Also prepare some basic C code like recursive fucntions etc.

I applied via Naukri.com and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Coding related to c programming it includes 10 coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very unexpected thing in my life. because from the beginning of my final year I tried very much to get a good job. then finally at the end of the semester I get a job through Naukri.com am very grateful for this job site. My recruitment process will be completed within 3 days intially I get a call from Recruiter then he told about all the process after that I have one coding test at the end of the day I get a selection mail for interview then next day they send a mail regarding interview so I attend the interview and its a very nice conversation with my panel .Almost at 7.30 pm I get a selection mail. Its purely a bliss🥳🌸
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Basic math and problem solving

Round 3 - Coding Test 

Language used is c, topics including strings, arrays, sorting and functions

Interview Preparation Tips

Interview preparation tips for other job seekers - be good at c and try to manage your time within the exam itself.

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Asic Design Verification Engineer interview?
L&T Technology Services interview process usually has 2 rounds. The most common rounds in the L&T Technology Services interview process are Resume Shortlist and Technical.
What are the top questions asked in L&T Technology Services Asic Design Verification Engineer interview?

Some of the top questions asked at the L&T Technology Services Asic Design Verification Engineer interview -

  1. Whats a bus functional model and how it's writ...read more
  2. Had direct technical interview that spanned over 1 and 30 Hours. Topics were pu...read more

Tell us how to improve this page.

L&T Technology Services Asic Design Verification Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k 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
DXC Technology Interview Questions
3.7
 • 809 Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Nagarro Interview Questions
4.0
 • 778 Interviews
View all
L&T Technology Services Asic Design Verification Engineer Salary
based on 4 salaries
₹4 L/yr - ₹9.1 L/yr
25% less than the average Asic Design Verification Engineer Salary in India
View more details
Senior Engineer
5.8k salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Engineer
4.8k salaries
unlock blur

₹3 L/yr - ₹8.2 L/yr

Technical Lead
2.1k salaries
unlock blur

₹8.5 L/yr - ₹30 L/yr

Project Lead
1.5k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹5.6 L/yr - ₹19 L/yr

Explore more salaries
Compare L&T Technology Services with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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