Filter interviews by
Clear (1)
I applied via Campus Placement and was interviewed before Jul 2022. There were 3 interview rounds.
- The shortlisted candidates moved on to Group Discussion round in which each group consisted of 4-5 students.
- A digital circuit was provided and there were subjective questions based on its behavior, waveform, timing analysis and functionality.
- Intense group discussion was carried out which lasted more than an hour.
Top trending discussions
posted on 14 Jun 2024
I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.
Difficulty level is 4/5
A null pointer is a pointer that does not point to any memory location.
Null pointers are used in programming languages to represent that a pointer does not point to a valid object or memory location.
Attempting to dereference a null pointer can result in a segmentation fault or other runtime error.
Example: int* ptr = nullptr; // ptr is a null pointer
MCQs on basics of digital design, comp arch and asic flow
Verilog code for D flip-flop (DFF) is a fundamental building block in digital design.
Use always block to describe the behavior of DFF
Use non-blocking assignment to update the output based on the input
Include a clock signal to trigger the update of the output
Example: always @(posedge clk) begin q <= d; end
I applied via Naukri.com and was interviewed before May 2022. There were 2 interview rounds.
Virtual function is a function in C++ that can be overridden in a derived class.
Virtual functions are declared in a base class and defined in a derived class.
They allow polymorphism, where a derived class object can be treated as a base class object.
The virtual keyword is used to declare a function as virtual.
Example: virtual void display() = 0; // pure virtual function
Example: virtual void display() { cout << 'Base cl
A constructor is a special method that is used to initialize objects of a class.
Constructors have the same name as the class they belong to.
They are called automatically when an object of the class is created.
They can be used to set default values for object properties.
Constructors can be overloaded to accept different parameters.
Example: public class Car { public Car() { // constructor code here } }
A destructor is a member function of a class that is responsible for destroying objects of that class.
Destructors have the same name as the class preceded by a tilde (~).
They are called automatically when an object is destroyed or goes out of scope.
They are used to release resources allocated by the object during its lifetime.
Example: ~MyClass() { delete[] myArray; }
Destructors cannot be overloaded or inherited.
Friend class is a class that has access to the private and protected members of another class.
Friend class is declared using the 'friend' keyword.
It allows the friend class to access the private and protected members of the class it is friends with.
Friendship is not mutual, meaning the friend class does not grant access to its own private and protected members.
Friend functions can also be declared to have access to pri...
I applied via Referral and was interviewed in Jul 2022. There were 2 interview rounds.
Questions related to data structures, memory management, programming languages, and computer architecture.
Linked list is a dynamic data structure while array is a static data structure.
Union is a data type that allows storing different data types in the same memory location as opposed to array which stores elements of the same data type.
Prime numbers are numbers that are only divisible by 1 and themselves.
Memory segmen...
I applied via LinkedIn and was interviewed before Aug 2023. There was 1 interview round.
I am a recent graduate with a degree in Business Administration and a passion for marketing and project management.
Recent graduate with a degree in Business Administration
Passionate about marketing and project management
Strong communication and organizational skills
Experience in internships and extracurricular activities
I am a dedicated and motivated individual with relevant skills and experience to excel in this role.
I have a strong academic background in [relevant field]
I have completed internships at [relevant companies] where I gained practical experience
I possess excellent communication and teamwork skills, as demonstrated by my involvement in [relevant projects or activities]
I am highly motivated and eager to learn and grow with
I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.
It was a online round with apti and coding mcqs and 2 coding questions which were very easy
In Java, a class is a blueprint for creating objects, while an interface is a reference type similar to a class that can contain only constants, method signatures, default methods, static methods, and nested types.
Classes can have constructors, fields, methods, and can be instantiated to create objects.
Interfaces cannot be instantiated and can only contain method signatures and constants.
A class can implement multiple ...
I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.
UDP is preferred over TCP in this project due to its low latency and lightweight nature.
UDP is a connectionless protocol, which means it does not establish a direct connection between the sender and receiver.
UDP is faster than TCP as it does not have the overhead of establishing and maintaining a connection.
UDP is suitable for applications where real-time data transmission is crucial, such as video streaming or online ...
To clear the 7th bit in a 32-bit register, perform a bitwise AND operation with a mask that has all bits set to 1 except the 7th bit.
Create a mask with the 7th bit set to 0 and all other bits set to 1
Perform a bitwise AND operation between the register and the mask
Store the result back in the register
based on 1 interview
Interview experience
Design Engineer
9
salaries
| ₹0 L/yr - ₹0 L/yr |
Layout Design Engineer
7
salaries
| ₹0 L/yr - ₹0 L/yr |
Vlsi Engineer
4
salaries
| ₹0 L/yr - ₹0 L/yr |
Design Engineer 1
4
salaries
| ₹0 L/yr - ₹0 L/yr |
Memory Design Engineer
4
salaries
| ₹0 L/yr - ₹0 L/yr |
Intel
Texas Instruments
Analog Devices
Broadcom