Upload Button Icon Add office photos

Filter interviews by

Cyient Fpga Design Engineer Interview Questions and Answers

Updated 23 Oct 2024

Cyient Fpga Design Engineer Interview Experiences

2 interviews found

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

I applied via Recruitment Consulltant and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

1hr, general engineering questions from Linear integrated circuits, microcontrollers and procssors, digital electronics etc

Round 2 - Technical 

(2 Questions)

  • Q1. Write HalfAdder program in vhdl?
  • Ans. 

    A HalfAdder program in VHDL is used to perform addition of two binary digits without considering the carry.

    • Declare two input signals A and B of type std_logic.

    • Declare two output signals Sum and Cout of type std_logic.

    • Implement the XOR gate for Sum and AND gate for Cout.

    • Example: A <= '1'; B <= '0'; Sum <= A XOR B; Cout <= A AND B;

  • Answered by AI
  • Q2. Explain about UART PROTOCOL?
  • Ans. 

    UART (Universal Asynchronous Receiver/Transmitter) protocol is a communication protocol used for serial communication between devices.

    • UART is a popular communication protocol used for transmitting and receiving data between devices asynchronously.

    • It uses two wires for communication - one for transmitting data (TX) and one for receiving data (RX).

    • UART communication involves start and stop bits to frame the data being tr...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Are you willing to shift to company location?

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There were 4 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 - One-on-one 

(1 Question)

  • Q1. Digital electronics, verilog, barrel shifter code, STA, code to RTL design
Round 3 - Technical 

(1 Question)

  • Q1. Previous projects, small technical questions, managerial discussion
Round 4 - HR 

(1 Question)

  • Q1. Basic hr discussion like onboarding date etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong

Fpga Design Engineer Interview Questions Asked at Other Companies

Q1. What is FPGA, have you ever work with one such?
Q2. Difference between blicking and non blocking
Q3. Write code for read and write file
Q4. What is CDC and explain the CDC techniques
Q5. Difference between task and function in verilog

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(5 Questions)

  • Q1. What is que in sv ?
  • Ans. 

    Que in SystemVerilog (SV) is a built-in data type used for creating queues.

    • Queues are dynamic arrays that can grow or shrink in size during simulation.

    • Queues can store elements of any data type.

    • Elements can be added to the end of the queue using the built-in methods like push_back().

    • Elements can be removed from the front of the queue using the built-in methods like pop_front().

  • Answered by AI
  • Q2. What is mailbox
  • Ans. 

    A mailbox is a data structure used for communication between different processes or threads in a computer system.

    • Mailboxes are typically used in multi-threaded or multi-processor systems to pass messages between different entities.

    • They provide a way for processes to communicate without directly accessing each other's memory.

    • Mailboxes can be implemented using queues, shared memory, or other mechanisms depending on the s

  • Answered by AI
  • Q3. What is delay inter and intera
  • Ans. 

    Delay inter and intra refer to delays within and between different components or systems.

    • Delay inter refers to delays between different components or systems.

    • Delay intra refers to delays within the same component or system.

    • Example: Delay inter can occur when data is transferred between a CPU and memory.

    • Example: Delay intra can occur within a CPU due to processing time.

  • Answered by AI
  • Q4. What is constraint
  • Ans. 

    Constraints in verification engineering are conditions or limitations imposed on the design or testbench to ensure certain properties are met.

    • Constraints are used to restrict the possible values of variables or signals in a design or testbench.

    • They help in verifying specific behaviors or scenarios within the design.

    • Examples include setting timing constraints for signal propagation or limiting the range of input values

  • Answered by AI
  • Q5. What is oops related
  • Ans. 

    Object-oriented programming concepts such as classes, objects, inheritance, encapsulation, and polymorphism.

    • Classes: Blueprint for creating objects with attributes and methods.

    • Objects: Instances of classes that contain data and behavior.

    • Inheritance: Ability for a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism:...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes

Skills evaluated in this interview

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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
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 - Aptitude Test 

Normal basic apti lr conceptual questions

Round 3 - Technical 

(3 Questions)

  • Q1. What is microcontroller? have you worked on any microcontroller? c++ basics polymorphism
  • Ans. 

    A microcontroller is a small computer on a single integrated circuit that contains a processor core, memory, and programmable input/output peripherals.

    • Microcontrollers are commonly used in embedded systems for controlling various devices and appliances.

    • They are programmed using languages like C or assembly language.

    • Examples of popular microcontrollers include Arduino, Raspberry Pi, and PIC.

    • Microcontrollers are often us...

  • Answered by AI
  • Q2. Tell me about your project?
  • Q3. Prime no. program?

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 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
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Linux: Explain system calls. Which system calls you used? IPC: which one you used? How to start yacto project? Diff betn process and thread. Explain I2c Difference between I2c And SPI difference between s...
  • Q2. Explain I2c diff btn i2c and spi diff btn hw and sw interrupt
  • Ans. 

    I2C is a serial communication protocol used to connect multiple devices with two wires. SPI is another serial protocol with four wires.

    • I2C uses a master-slave architecture while SPI uses a master-master architecture.

    • I2C supports multiple devices on the same bus while SPI requires a separate chip select line for each device.

    • Hardware interrupts are triggered by external events while software interrupts are triggered by s

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well .. linux

Skills evaluated in this interview

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

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 - 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.

Cyient Interview FAQs

How many rounds are there in Cyient Fpga Design Engineer interview?
Cyient interview process usually has 3-4 rounds. The most common rounds in the Cyient interview process are Technical, HR and Aptitude Test.
How to prepare for Cyient Fpga 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 Cyient. The most common topics and skills that interviewers at Cyient expect are FPGA Design, Analog, Automotive, Debugging and Design Engineering.
What are the top questions asked in Cyient Fpga Design Engineer interview?

Some of the top questions asked at the Cyient Fpga Design Engineer interview -

  1. write HalfAdder program in vh...read more
  2. explain about UART PROTOC...read more
  3. Digital electronics, verilog, barrel shifter code, STA, code to RTL des...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 803 Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
View all
Cyient Fpga Design Engineer Salary
based on 4 salaries
₹5.5 L/yr - ₹8 L/yr
At par with the average Fpga Design Engineer Salary in India
View more details
Design Specialist
2.1k salaries
unlock blur

₹1 L/yr - ₹7.2 L/yr

Design Engineer
1.7k salaries
unlock blur

₹2 L/yr - ₹10.5 L/yr

Software Engineer
1.2k salaries
unlock blur

₹3 L/yr - ₹12.3 L/yr

GIS Engineer
1.1k salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Senior Design Engineer
918 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Cyient with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview