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
Domande di colloquio [1]
Domanda 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
Ho presentato la mia candidatura tramite un'altra fonte. Ho sostenuto un colloquio presso Tech Mahindra
Colloquio
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.
Ho presentato la mia candidatura online. La procedura ha richiesto 4 settimane. Ho sostenuto un colloquio presso Tech Mahindra (Ahmedabad) nel mese di gen 2025
Colloquio
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?