There 3 rounds,
1. Written exam
2. Technical Round
3. HR Round
Written exam consist of two sections.
1. Multiple choice questions
2. Coding Section
1. MCQ on SQL, DBMS, Java, UML and Software Engineering.
Total 50 questions and 50 marks and 50 minutes.
If we know the basic concepts we can easily clear.
2. Coding Section 1 question (10 marks and 20 minutes)
Note : Only Java (Online Compiler)
We have write the code without errors.
Very easy questions.
I got the below questions.
Write a Java program to convert the given number into words.
Ex: input 567
Output : Five Six Seven
input : 12345
Output : One Two Three Four Five
I've written the below code.
import java.io.*;
public class Main
{
public static void main(String args[])
throws Exception
{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String str=br.readLine();
String arr[]={"One", "Two", "Three","Four","Five","Six","Seven","Eight","Nine"};
String result="":
for(int i=0;i<str.length();i++)
{
int num=Integer.parseInt(str.carAt(i)+"");
result+=arr[num-1]+" ";
}
System.out.println(result.substring(0,result.length()-1));
}
}
2. Technical Round
1. Tell me about yourself
2. She asked me to explain about my Academic projects.
3. Some questions on Projects.
4. Software life cycle management,
5. Explain about Spiral model and water fall model with differences.
6. linux commands.
7. Sql Queries.
8. About JDBC.
3. HR Round
Interviewer : Who are you?
Me : I'm xxxxxxxxxxx.
What do you do?
Me : Told
Interviewer: Thanks You can leave now.
Me : Thanks.
I've never faced this type interview and I can say that is the worst interview I attended.
Even Technical and HR.
They are wasting our time.
And One thing I want to say the company infrastructures is good but neatness is very bad.