i have the skill set asp.net MVC , sql server , oracle , javascript , html, CSS, jquery. Its only 45 min interview .
First-round technical interview through zoom meeting.
Second-round managerial discussion
Interview questions [1]
Question 1
class A {
int i ;
static int j;
public static void main (String args[])
{
i=10;
j=20;
Console.Write(i);
Console.Write(j);
}
}
What is the output of the given code? class Program
class A {
static void Main(string[] args)
{
method(null);
}
public static void method(Object o)
{
Console.Write("Object method");
}
public static void method(String s)
{
Console.Write("String method");
}
}
ow many String objects are created by the below code?
public class Test{
static void Main(string[] args){
String s = new String("Hello World");
}
}
What is the output of the below Java code? public class Test{
static void Main(string[] args){
Console.Write(0.1*3 == 0.3);
Console.Write(0.1*2 == 0.2);
}
}
What will be output of below code ?
public class Test {
static void Main(String[] args) {
A a= new B();
a.method2();
}
}
class A{
public void method1()
{
Console.Write("Method1 in class A");
}
}
class B : A{
public void method1()
{
Console.Write("Method1 in class B");
}
public void method2()
{
Console.Write("Method2 in class B");
}
}
They asked normal java questions and codes and a few situation based questions and they discuss about our internships and projects and then followed by sql questions and codes also
I applied through other source. I interviewed at Tech Mahindra
Interview
It has totally five rounds.
First round was aptitude followed by second round was programming.
Third round is SVAR
Fourth round is technical interview and followed by fifth round is HR interview.
I applied online. The process took 4 weeks. I interviewed at Tech Mahindra (Ahmedabad) in Jan 2025
Interview
Basic questions related to the MERN stack. Like what is MERN stack, Why MERN stack? Some questions from React Like Hooks, Props, Class Based components vs Function Based components, which is best according to you and why? what is redux and why do we use redux?