Jr developer Interview Questions
14K
Jr Developer 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

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

Any five html empty tags (last round)
6 Answers↳
You got the offer?
↳
10 Jan
↳
Any who got the call for third round who gave technical interview on 7th jan, if got plzz mention the date. Less

Waar mogen we je 's nachts voor wakker maken?
6 Answers↳
Je mag mij altijd wakker maken als je behoefte hebt aan een paar blauwe ogen of een tand door je lip. Less
↳
Voor een lapdance met Bar Rafaeli
↳
Je mag me helemaal nooit niet wakker maken

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?

1. You are given x amount of balls, all but two are red, all but two are green, all but two are blue. How many balls do you have? 2. Why are manhole covers circular? 3. There are x amount of balls in a bag, 8 are red, 4 are green, 4 are blue. You are blind folded. What is the least amount of balls you have to pull out of the bag to be 100% sure you have 1 of every color.
4 Answers↳
1. 3 2. A circle cannot fall through a circle 3. 13
↳
or for 2 it could be because a heavy round object is easier for one person to handle and move (roll) ... a circle can not fit fall through a circle..WTF.. neither can a square, rectable, trapezoid, or any other shapae that would sit on a shelf of sorts which is what the manhole does. Less
↳
Circular covers don't need to be rotated or precisely aligned when placing them on the opening. A round manhole cover is easily moved and rolled. Less

On the interview I had to code an example with PHP and as they were watch me develop.
4 Answers↳
Can you please say something about the task?
↳
Can you please tell which task they gave to you during the interview, would be very helpful. Less
↳
I've coded on the inverview while sharing my screen. They asked specific language questions and other technologies around it. Less