Nextlabs Interview Questions & Reviews
Updated Apr 26, 2012 – Interview questions and reviews posted anonymously by interview candidates.
|
Difficulty Rating [?] Based on 4 ratings |
Interview Experience [?] Based on 4 ratings
|
Nextlabs has 17 connections on Glassdoor
| 1–4 of 4 Nextlabs Interviews | Sort by |
Marketing Manager at Nextlabs
Posted Apr 26, 2012
5.0
Very Difficult Interview
|
Overall Negative Experience
|
Interviewed and No Offer
|
Interviewed Mar 2012 (took 2+ months)
Where to start. First contacted in January. Met with hiring manager who is opening a new office. Went well. Then I talked to HR. Then I talked with a Product Manager. Then I talked to the CEO for 2.5 hours on a Saturday. Then I talked to the outside benefits coodinator. Then I flew to DC where I met with another Product Manager, the hiring manager and the CEO again. The CEO spent the entire time talking about himself and then said "how you feel about me right now is how you will feel about me in 3 months." Then when I asked about his exit strategy he insulted me for asking such a terrible question and then berated me for 30 minutes. I'm not even going to talk about the skills test. Started process January 9th. Ended process March 20th.The salary was below average, the healthcare was horrendous, two weeks of vacation, and they have no 401k. RUN do not walk away from this company and it arrogance and BS. What a joke. Oh and the reference checks were 45 minutes long and conducted on a Sunday.
Other Details
I Applied Online and the interview consisted of a Phone Interview, a 1:1 Interview, a Group/Panel Interview, a Presentation and a Skills Test.
Helpful Interview?
Yes |
No
Inappropriate?
Senior Software Engineer at Nextlabs
Posted Jan 18, 2012 — 1 of 1 people found this helpful
3.0
Average Interview
|
Overall Negative Experience
|
Interviewed and No Offer
|
Interviewed Dec 2011 in San Mateo, CA (took 4+ weeks)
To be very honest, this company is looking for hiring extremely cheap workers. Those who are going to have an interview with them, please tell them explicitly what you would like to be get paid. The interview process is average. The CEO needs to learn how to manage things.
Interview Questions
Other Details
I got the interview through a College or University and the interview consisted of a Phone Interview, a 1:1 Interview and a Group/Panel Interview.
Helpful Interview?
Yes |
No
View Comments (1)
Inappropriate?
Java Engineer at Nextlabs
Posted Jan 12, 2012
4.0
Difficult Interview
|
Overall Neutral Experience
|
Interviewed and No Offer
|
Interviewed Jan 2012 in San Mateo, CA (took 2 weeks)
The recruiter contacted me, and said that their company doesn't pay for relocation costs, asked whether I want to process the interview or not, and after that, we scheduled the first interview, it was a online coding interview, you need to provide the skype account, and do the video call with them. The recruiter will pass the questions to you on skype, and you need to code it in front of them. (I think they just want to make sure that it's you, the people who write the code). The interview took around 1.5 hrs. There have 5 coding questions.
Interview Questions
int findMax(int[] items)
{
}
public interface BinaryTree<T extends Comparable<? super T>>
{
public void insert(T data);
public T findMin();
public boolean contains(T data);
public void remove(T data);
}
2.1. (optional) What does T extends Comparable< super T>> mean?
Ans: It means that T has to be of type Comparable, which can avoid redundantly specifying type parameters
Please describe some of these data structures and when they might be used.
public class Test
{
public final static int NUMTHREADS = 1000;
public final static int NUMLOOP = 1000;
public static int num = 0;
static class Mythread extends Thread
{
@Override
public void run()
{
for (int i = 0; i < NUMLOOP; i++)
{
++num;
}
}
}
public static void main(String argv[])
{
Mythread threads[] = new Mythread[NUMTHREADS];
for (int i = 0; i < NUMTHREADS; ++i)
{
threads[i] = new Mythread();
threads[i].start();
}
try
{
for (int i = 0; i < NUMTHREADS; ++i)
{
threads[i].join();
}
}
catch (InterruptedException e)
{
}
System.out.println("Num: " + num);
}
}
Other Details
I Applied Online and the interview consisted of a Phone Interview and a Skills Test.
Helpful Interview?
Yes |
No
Inappropriate?
Senior Engineer at Nextlabs
Posted Jun 10, 2011
3.0
Average Interview
|
Overall Neutral Experience
|
Received and Declined Offer
|
Interviewed May 2009 in San Francisco, CA (took 2+ weeks)
The interview was from 10 to about 4 in the evening. It consisted of technical, analytical, management and aptitude test. It was a good interview that covered all aspects.
Interview Questions
There is a cake which has been cut unevenly. YOu now have the left over cake and have to cut it into 2 equal parts. How do you do it/
Reason for Declining
Got a better pay from another company
Other Details
I Applied Online and the interview consisted of a Phone Interview, a 1:1 Interview, an IQ/Intelligence Test and a Skills Test.
Helpful Interview?
Yes |
No
Inappropriate?