I applied through an employee referral. The process took 3 weeks. I interviewed at eBay (San Jose, CA) in Feb 2014
Interview
I had gotten an interview through an employee referral. Someone contacted me about a time. There was a miscommunication on their part between the HR and the manager and they didn't call me at the first time we planned, so we had to plan another one. The manager of that team called me and first told me about what they did and then asked me questions about my resume and then asked technical questions.
Interview questions [1]
Question 1
What's the difference between C++ and Java. I said something about pointers and he wanted me to go more in depth.
What is the difference between string builder and string buffer.
He sent me a code and make suggestions:
import java.math.BigDecimal;
public class CashCalculatorBasic {
public BigDecimal getCalculatedAvailableBalance(BigDecimal currentBalance, BigDecimal totalDebits, BigDecimal totalCredits) {
BigDecimal result = currentBalance.subtract(totalDebits).add(totalCredits);
System.out.println("The calculated result is " + result);
return result;
}
public static void main(String[] args) {
new CashCalculatorBasic().getCalculatedAvailableBalance(
new BigDecimal("1250.00"), new BigDecimal("250.00"), new BigDecimal("500.00"));
}
}
I applied through college or university. The process took 1 week. I interviewed at eBay (San Jose, CA) in Feb 2014
Interview
I was setup for a screening interview through a recruiter who received my resume via career fair. The preliminary interview was conducted over the phone with an engineer at the company. The engineer admitted to knowing little about the position I was applying for but he gave me a good idea of what is expected of potential employees at eBay Inc. It was a 30-45 minute technical interview discussing questions ranging from development environment to data structures.
Interview questions [1]
Question 1
How to retrieve a file with a specific string or keyword using UNIX command line
I applied through college or university. I interviewed at eBay
Interview
On-campus interview after Career Fair. I am not sure up to now whether it has a second-round interview. In the interview, at most of the time we were talking about my previous project experience. Some simple data structure and algorithm such as bubble sort and HashMap is asked.
Interview questions [1]
Question 1
It's my first time to interview in English so I was nervous.