Filter interviews by
Tasks are parallelizable and can be executed concurrently, while functions are sequential and executed in a linear manner.
Tasks can be executed in parallel, while functions are executed sequentially.
Tasks can have multiple entry points, while functions have only one entry point.
Tasks can have multiple exit points, while functions have only one exit point.
Tasks can be called multiple times concurrently, while funct...
Digital electronics is a branch of electronics that deals with digital signals and systems.
Deals with discrete values (0s and 1s)
Utilizes logic gates to process digital signals
Used in computers, smartphones, digital cameras, etc.
Digital circuits can be easily replicated and manipulated
Latches are level-sensitive while flip-flops are edge-triggered. Flip-flops have a clock input while latches do not.
Latches are level-sensitive, meaning the output changes as long as the enable signal is active.
Flip-flops are edge-triggered, meaning the output changes only on the rising or falling edge of the clock signal.
Flip-flops have a clock input which latches do not have.
Latches are faster but consume more p...
Latches are level-sensitive while flip-flops are edge-triggered. Flip-flops have a clock input while latches do not.
Latches are level-sensitive, meaning the output changes as long as the enable signal is active. Flip-flops are edge-triggered, changing only on the rising or falling edge of the clock signal.
Flip-flops have a clock input which controls when the output changes, while latches do not have a clock input.
...
A 2:1 mux can be used to design and gate.
A 2:1 mux has two inputs and one output.
The output is selected based on the value of the select input.
To design an AND gate using a 2:1 mux, connect one input to the select input and the other input to the data input.
Connect the output of the mux to the AND gate output.
The truth table for the AND gate can be derived from the truth table of the 2:1 mux.
Mux is used to select one of several input signals and forward the selected input to the output.
Multiplexers are used in digital circuits to select one of several input signals and forward the selected input to the output.
Mux is used in data transmission systems to combine multiple data streams into a single stream.
Mux is used in memory systems to select a particular memory location for read or write operations.
Mu...
D to T flip-flop conversion involves using D flip-flops to create T flip-flops for toggling operations.
A D flip-flop captures the value of the D input at the clock edge.
A T flip-flop toggles its output on each clock pulse if T input is high.
To convert D to T, connect the D input to the output Q of the T flip-flop.
Example: If Q is 0, D should be set to 1 to toggle to 1 on the next clock pulse.
I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.
We should know basics of electronoics and also some aptitude questions
Latch is level sensitive and stores data temporarily, while flip-flop is edge triggered and stores data permanently.
Latch is level sensitive, while flip-flop is edge triggered
Latch stores data temporarily, while flip-flop stores data permanently
Latch has a transparent latch, while flip-flop has a clocked latch
Tasks are parallelizable and can be executed concurrently, while functions are sequential and executed in a linear manner.
Tasks can be executed in parallel, while functions are executed sequentially.
Tasks can have multiple entry points, while functions have only one entry point.
Tasks can have multiple exit points, while functions have only one exit point.
Tasks can be called multiple times concurrently, while functions ...
I applied via Campus Placement and was interviewed in Dec 2023. There were 2 interview rounds.
Apptitide, Digital Electronics, physical Design concepts.
I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 interview rounds.
Very basic questions on digital and verilog and sv
Latches are level-sensitive while flip-flops are edge-triggered. Flip-flops have a clock input while latches do not.
Latches are level-sensitive, meaning the output changes as long as the enable signal is active.
Flip-flops are edge-triggered, meaning the output changes only on the rising or falling edge of the clock signal.
Flip-flops have a clock input which latches do not have.
Latches are faster but consume more power ...
Digital electronics is a branch of electronics that deals with digital signals and systems.
Deals with discrete values (0s and 1s)
Utilizes logic gates to process digital signals
Used in computers, smartphones, digital cameras, etc.
Digital circuits can be easily replicated and manipulated
I applied via Campus Placement and was interviewed in Dec 2022. There were 4 interview rounds.
Digital Verilog and Sv and aptitude
Digital electronics is a branch of electronics that deals with digital signals and systems.
Deals with discrete values (0s and 1s)
Utilizes logic gates to perform operations
Commonly used in computers, calculators, and digital clocks
Latches are level-sensitive while flip-flops are edge-triggered. Flip-flops have a clock input while latches do not.
Latches are level-sensitive, meaning the output changes as long as the enable signal is active. Flip-flops are edge-triggered, changing only on the rising or falling edge of the clock signal.
Flip-flops have a clock input which controls when the output changes, while latches do not have a clock input.
Latch...
Yes, I am comfortable with bond as it relates to collaboration and teamwork in engineering projects.
Bonding in a team fosters better communication and collaboration.
For example, working closely with cross-functional teams can lead to innovative solutions.
Building strong relationships with colleagues enhances project efficiency.
A good bond can also lead to mentorship opportunities and knowledge sharing.
A 2:1 mux can be used to design and gate.
A 2:1 mux has two inputs and one output.
The output is selected based on the value of the select input.
To design an AND gate using a 2:1 mux, connect one input to the select input and the other input to the data input.
Connect the output of the mux to the AND gate output.
The truth table for the AND gate can be derived from the truth table of the 2:1 mux.
Mux is used to select one of several input signals and forward the selected input to the output.
Multiplexers are used in digital circuits to select one of several input signals and forward the selected input to the output.
Mux is used in data transmission systems to combine multiple data streams into a single stream.
Mux is used in memory systems to select a particular memory location for read or write operations.
Mux is ...
D to T flip-flop conversion involves using D flip-flops to create T flip-flops for toggling operations.
A D flip-flop captures the value of the D input at the clock edge.
A T flip-flop toggles its output on each clock pulse if T input is high.
To convert D to T, connect the D input to the output Q of the T flip-flop.
Example: If Q is 0, D should be set to 1 to toggle to 1 on the next clock pulse.
Top trending discussions
I applied via LinkedIn and was interviewed in Jul 2024. There were 4 interview rounds.
Previous work clarity is essential for successful collaboration and understanding of project requirements.
Clearly explain the projects you have worked on in the past, including your role and responsibilities
Provide examples of how you communicated with team members to ensure clarity in project goals
Discuss any challenges you faced in previous projects and how you overcame them
Bit manipulation, memory layout, interrupts, semaphore mutex, implement memcpy, sorting, algo to share resource equally
atoi function converts a string to an integer in C language
Use a loop to iterate through each character of the input string
Check if the character is a digit (0-9) using 'isdigit' function
Calculate the integer value by multiplying the current value by 10 and adding the digit value
Remove the head of a linked list while maintaining the integrity of the remaining nodes.
Identify the head node of the linked list.
Update the head pointer to point to the second node.
Ensure the second node becomes the new head.
Example: For list 1 -> 2 -> 3, after removal, it becomes 2 -> 3.
I applied via Referral and was interviewed before Jul 2022. There were 3 interview rounds.
Sql queries relted mcq questions
Involving a manager in the interview process enhances decision-making and team dynamics.
Encourages alignment on team goals and expectations.
Provides insight into the manager's leadership style.
Facilitates a better understanding of team dynamics.
Allows for immediate feedback from both the manager and the candidate.
I applied via Company Website and was interviewed before Apr 2022. There were 5 interview rounds.
Pointer and linked list
Pure technical on kernel programming
Multi-threaded programming can be achieved by creating multiple threads that run concurrently.
Identify the tasks that can be executed in parallel
Create threads using threading libraries in the chosen programming language
Synchronize the threads to avoid race conditions and deadlocks
Use locks, semaphores, and mutexes to manage shared resources
Optimize the performance by balancing the workload among threads
I applied via Referral and was interviewed before Oct 2022. There were 3 interview rounds.
A module in Python is a file containing Python code, which can define functions, classes, and variables.
Modules help organize Python code into reusable components
Modules can be imported into other Python scripts using the 'import' keyword
Examples of modules in Python include math, random, and os
based on 4 interview experiences
Difficulty level
Duration
based on 25 reviews
Rating in categories
Design & Verification Engineer
25
salaries
| ₹5.7 L/yr - ₹14.4 L/yr |
Design Engineer
16
salaries
| ₹3 L/yr - ₹12 L/yr |
Verification Engineer
5
salaries
| ₹5.5 L/yr - ₹14 L/yr |
RTL Design Engineer
5
salaries
| ₹13 L/yr - ₹17 L/yr |
System Engineer
4
salaries
| ₹4.8 L/yr - ₹8.4 L/yr |
Smiiel - A Unit Of Motherson Sumi System
STJ Electronics
PICL
Tokai Rika Minda