I applied online. The process took 6 weeks. I interviewed at eBay (New York, NY) in Sep 2014
Interview
Overall I have attended 5 rounds of interview and the pattern is good for a person who have strong basics in Java and any of the automation tools like Selenium/Jmeter.
Many emphasis will be on Java Collections.
Interview questions [1]
Question 1
Couple of questions on multi threading.
More number of questions on JMS.
Questions on basic OOPS concepts.
Some of the methodologies/Approaches to test an application.
I applied online. The process took 3 weeks. I interviewed at eBay
Interview
Consisted of 2 rounds. Round 1 was a case study round, along with an extended discussion about my work experience. I had relevant work experience so spoke about that. The interviewer did spend a significant amount of time clarifying things about the position. Round 2 was an SQL interview, and a discussion about my work experience again.
Interview questions [1]
Question 1
If you were to forecast the sales of one of the products for the Q1 of FY 2015 what would your approach be?
SQL interview was very basic. They gave me 2 sample tables. Asked me to perform some basic roll ups, and calculate ranks of entries, by using ordered analytical functions.
I applied through a recruiter. The process took 1 day. I interviewed at eBay (San Jose, CA) in Feb 2015
Interview
I got a phone call from the recruiter who mentioned that eBay is their direct client. The recruiter herself asked some basic Core Java questions. Then they send me a email to solve a technical question and write up about my experience in cloud computing.
Interview questions [1]
Question 1
Write a program in Java to assess a given string whether it complies with following patterns. Return true if a given string complies with these patterns else false.
N = N1 + N2
N>= N1 >= N2
where N is the Nth element in the string or element at Nth position;
N1 is the (N-1) element in the string & N2 is the (N-2) element in the string.
Example 1: 224610
Elements in this string are 2, 2, 4, 6, 10.
First Set: 2+2=4 (N2=2; N1=2 & N= 4);
Second Set: 2+4=6 (N2=2; N1=4 & N=6);
Third Set: 4+6=10 (N2=4; N1=6 & N= 10)
Example 2: 1112233558
Elements in this string are 1, 11, 12, 23, 35, 58
Example 3: 1101102203
Elements in this string are 1, 101, 102, 203