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
Questions d'entretien [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
J'ai postulé via une autre source. J'ai passé un entretien chez Tech Mahindra
Entretien
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.
J'ai postulé en ligne. Le processus a pris 4 semaines. J'ai passé un entretien chez Tech Mahindra (Ahmedabad) en janv. 2025
Entretien
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?