There were 3 rounds. First round was written test, second was technical and third round was HR. As it was a walk in interview, we went there by 10AM and we got our turn to attend test at 4PM in the evening.
Interview questions [1]
Question 1
For the EC background people the test was easy. The questions were related to electronics and basic computer questions. As i'm from CS background i was able to attend the questions related to computer and some basics of transistors.
I applied online. I interviewed at HARMAN (Bengaluru) in Mar 2024
Interview
The first round has been technical, possibly focusing on syntax and basic concepts but presented in a tricky manner. This suggests that the interviewers might have been testing not just your knowledge of programming languages but also your ability to think critically and solve problems effectively.
Which constructor will execute first
public Class A
{
static A()
{
Console.WriteLine("Hello! Static constructor is called");
}
public A()
{
Console.WriteLine("Hello! Non-Static constructor is called");
}
output of below code
class A
{
public void show()
{
Console.WriteLine("Hello: Base Class!");
Console.ReadLine();
}
}
class B : A
{
public new void show()
{
Console.WriteLine("Hello: Derived Class!");
Console.ReadLine();
}
}
output of below code
class A
{
public virtual void show()
{
Console.WriteLine("Hello: Base Class!");
Console.ReadLine();
}
}
class B : A
{
public override void show()
{
Console.WriteLine("Hello: Derived Class!");
Console.ReadLine();
}
}
I applied through college or university. The process took 1 day. I interviewed at HARMAN (Bangalore Rural) in Feb 2024
Interview
Interviews offer opportunities to present oneself authentically, navigate challenges, and con nect with potential employers, shaping career paths and professional growth.Interviews offer opportunities to present oneself authentically, navigate challenges, and connect with potential employers, shaping career paths and professional growth.