Filter interviews by
I applied via Company Website and was interviewed in May 2024. There was 1 interview round.
Sequence detector is a digital circuit that detects a specific sequence of bits in a stream of input data.
FSM (Finite State Machine) is commonly used to design sequence detectors.
RTL (Register Transfer Level) describes the behavior of digital circuits using registers and logic gates.
Example: A sequence detector that detects '1010' in a stream of binary data.
Example: FSM states for this detector could be S0, S1, S2, S3
I applied via Company Website and was interviewed in Sep 2024. There were 2 interview rounds.
C++ on leetcode programming
Verify last level cache by running stress tests, analyzing cache hit/miss rates, and comparing performance metrics.
Run stress tests to simulate high load scenarios and observe cache behavior
Analyze cache hit/miss rates to ensure data is being efficiently stored and retrieved
Compare performance metrics before and after cache verification to measure improvements
Use tools like CacheGrind or Valgrind for detailed cache ana
Identifying and fixing a race condition in a multi-threaded system
Observed intermittent failures in test results
Used debugging tools like gdb and log analysis to trace the issue
Identified the root cause as a race condition between two threads
Implemented a mutex lock to resolve the issue
Verified the fix by running stress tests
Top trending discussions
I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.
A framework is a set of guidelines, standards, and tools used to develop software applications.
A framework provides a structure for developers to build upon
It includes pre-written code and libraries to simplify development
Frameworks can be specific to a programming language or platform
Examples include React for web development and TensorFlow for machine learning
posted on 19 Nov 2020
I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.
Swap two numbers with and without temporary variable
Without temporary variable: Use addition and subtraction
With temporary variable: Use a third variable to store the value of one of the numbers
Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;
Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;
based on 3 interviews
Interview experience
TCS
Accenture
Wipro
Cognizant