Junior engineer Interview Questions
15K
Junior Engineer interview questions shared by candidates
attributes of <tr> tag
41 Answers↳
please let me know if anyone got Job
↳
36. If you get call then follow this interview experience
↳
How many of you waiting after 3rd round

tell me about yourself
35 Answers↳
Round 2 contains two coding questions and 10 mcqs. Mcqs based on core subjects of computer science and those two coding questions will be of level 3 - level 4 in difficulty . implementing the interfaces using inheritance , or sorting some data with some constraints , collections , algorithms implementation like shortest path , merge sort techniques etc . Less
↳
Mostly on java typical questions about constructors, main method , oops concepts and collections and some advanced concepts like cloning , memory allocation and JVM architecture . Less
↳
First round u can code in your own language... But i suggest to write in java and ...second round is mandatory to write in java. Less

How long do you plan to work here?
30 Answers
implement the dynamic polymorphism
23 Answers↳
Could you please answer me .what are the 2 coding questions you were asked in the round 2 so that we have an idea of what kind of questions they were expecting ? Hope a reply from you.Thank You Less
↳
Is it the same type of questions asked as he mentioned? or different set of questions. Is it through epam test portal? Less
↳
Already they have sent the mail's for second round for some people. Tommorow they have second round with following others rounds Less

write a program to print the given series (user need to enter the nth series number from keyboard) 2,3,5,11,23,29,41,53,83,89 .....n
11 Answers↳
Answer is in java :100% correct public class ProgramDemo { public static void main(String[] args) { System.out.println("Enter the value :"); Scanner read = new Scanner(System.in); int number = read.nextInt(); for(int i=2;i<=number;i++){ if(Prime(i)){ if(Prime(2*i+1)){ System.out.print(" "+i); } } } } static boolean Prime(int a) { int temp, c; for (c = 2; c <= a - 1; c++) { temp = a % c; if (temp == 0) { return false; } } if (c == a) { return true; } return false; } } I Hope its helpful for you :) Plese give me one like for it .... Less
↳
Excellent bro
↳
import java.util.Scanner; public class HelloJava { public static void main(String args[]) { int i,flag=0; for( int x = 2 ;x<100 ;x++) { flag=0; for(i=2;i<=x-1;i++) { if(x%i==0) { flag = 1; break; } } if(flag==0) { for( i = 2; i Less

What was your best McGuyver moment?
6 Answers↳
This question is just a creative way to ask you how you solved a problem at work that required you to think outside the box, improvise or invent a solution that was not proposed by someone else. Proper preparation for this question is identifying a significant project where you had substantial impact on the success of the outcome, hopefully by identifying a solution on your own. Less
↳
Have real MacGyver answer ready, but start out with a MacGruber answer like "Once I was in the control room of a deserted power plant..." Less
↳
How about spelling MacGyver correctly? You didnt even come close

Any five html empty tags (last round)
6 Answers↳
10 Jan
↳
You got the offer?
↳
No .. dont know result .. My actually final round was not good enough

describe a time when you had to make a hard decision.
5 Answers↳
No not yet! They said we would hear in a few weeks.
↳
I am in the same boat as you! Waiting for a response. Let me know when they finally do get in touch Less
↳
Nope, I haven't heard anything yet.

question mostly about output prediction of java code
5 Answers↳
Was it only for profound students
↳
How many were shortlisted for the next round..??
↳
I have attended third round. That was horrible

In Round 1, Questions were like merge two Strings in alternating manner, one question on pattern matching of 50 marks.
5 Answers↳
In second round there is only mcqs section or both mcqs and coding?
↳
Can you please tell what qs they asked in the second round. I have the second round soon. It will help a lot. Less
↳
what type of questions will be asked in second round?