Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      LinkedIn

      Parte di Microsoft

      Azienda coinvolta

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su LinkedIn | Offerte di lavoro di LinkedIn | Stipendi di LinkedIn | Benefit di LinkedIn
      Colloqui di LinkedInColloqui per Software Engineer - Applications presso LinkedInColloquio di LinkedIn


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Le migliori aziende per "stipendio e benefit" vicino a te

      avatar
      Amazon
      3.7★Stipendio e benefit
      avatar
      Google
      4.5★Stipendio e benefit
      avatar
      HENNGE
      3.8★Stipendio e benefit
      avatar
      xneelo
      3.8★Stipendio e benefit

      Colloquio per Software Engineer - Applications

      31 lug 2012
      Candidato anonimo a colloquio
      Mountain View, CA

      Altre recensioni di colloqui per Software Engineer - Applications presso LinkedIn

      Colloquio per Applications Developer

      25 ago 2015
      Candidato anonimo a colloquio
      San Jose, CA
      Nessuna offerta
      Nessuna offerta
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho presentato la mia candidatura tramite segnalazione di un dipendente. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso LinkedIn (Mountain View, CA) nel mese di lug 2012

      Colloquio

      Visited a friend at their Mountain View campus for free lunch, and got contacted soon by a recruiter after passing along my resume. The recruiter sent links in an e-mail to resources that help you prepare for CS fundamentals, including the 'How to hack a Google interview' pamphlets. Quickly scheduled and went through just one technical phone screen, where I had to write code using CollabEdit and talked on Skype. There were 2 questions: interviewer pasted a function signature for 'double pow(double a, int b)' and I had to write the body. That was pretty easy, but you do have to know the fast exp algorithm. The other question was implementing 'double rpn(List<String> ops)' to compute some result using RPN. This was also very easy (using a stack), but do watch out for edge conditions and handle exceptions. Got confirmation for onsite interview after 2 days, and gave myself a week preparation time before meeting for 1:1 interviews (actually, there's a main interviewer who does 90% of the talking, but is often accompanied by a trainee) by 6 pairs, covering the areas: technical presentation, 3 algorithmic programming problems, 1 system design problem. The first interviewer walked me to lunch and chatted about my work history--nothing technical. Just make sure you have rehearsed lines about your accomplishments, and be enthusiastic. The following 3 interviews (in 3 hours) were all on programming. The first one is fairly short: implement 'int[] intersect(int[] x, int[] y)' given 2 sorted int arrays, and provide the big-O for your best solution. The key here is to think through the problem (but talk so they don't think you're stuck and idling), then write on the write board. The interview room was only around 8'x6', with a small round table and 3 stools, and a full wall of whiteboard. The hardest part, unless you're already familiar with the drill common to top Silicon Valley companies, is writing code on the whiteboard where it's difficult to add and delete lines, such as when you need to declare a new variable half-way down the board. There were 3 panes, and for some questions I had to switch back and forth, which likely confused me when I was wiping lines with my hand and adding ugly arrows to insert lines (instead of erasing already crafted lines), and messing up indentation. You get the idea. I understand that good whiteboard presentation with clearly legible writing is important, but I wished that wasn't tackled on as you're trying to solve a tough coding problem. One of the interviewers pulled out his phone and took a photo of the whiteboard of one of my least proudest work (I'm usually known as an anally clean coder). The system design question seemed hardest as I got stuck on trying to use more complex structures than was probably necessary, like load-balanced message queues, distributed hashmaps of sorted structs containing 5 URLs and their timestamps, and using LRU methods to GC the old data. I had to ask for a hint, but that likely sealed my fate. The better, but certainly not the only, solution would be to use buckets of a fixed time interval. Seems easy, but often times the bad ideas just won't go away when under pressure. In the final session, the interviewer asked me to pick my favorite project and describe the design in detail. Actually, the paraphrased question was 'you just hired a new developer on this project, how would you get him/her up to speed on developing this new feature'. I described a bit about project and release management logistics, but they were more interested in hearing about and seeing class diagrams, module, component, and network topologies. Finally, the question that threw me off a bit was (since the project I described happened 10 years ago): how would you modernize the project for 2012? What different components or approaches would use and why? One thing that I reacted negatively to was all the interviewers were scheduled to arrive at the room on their assigned hour, and since the first one was late by over 10 minutes, most of the sessions ran past their hour slot with next interviewers opening the door and interrupting my thought process, only to be told 'can we have 5 more minutes?' and having the interviewers standing up and nodding nodding, basically saying 'alright, just wrap it up'. I waited 2 full days before being e-mailed about the rejection--no personal call unless you've made it past the gate, I suppose.

      Domande di colloquio [3]

      Domanda 1

      How would you design an enhancement to the LinkedIn homepage that displays 24-hour trailing lists (5-minute, 1-hour, 1-day) of the top 5 URLs that users post onto the site?
      1 risposta

      Domanda 2

      Given an interface called IntStream with methods 'bool hasNext()' and 'int next()', implement the function 'IntStream merge(IntStream[] streams)' where each input IntStream produces strictly increasing, possibly infinite number of, integers, and the resultant IntStream also produces strictly increasing integers by merging the input streams. The interviewer also provides a simple test harness that prints the first 5000 integers from that function.
      Rispondi alla domanda

      Domanda 3

      Given a single-line text string and a maximum width value, write the function 'string justify(string text, int maxWidth)' that formats the input text using full-justification, i.e., extra spaces on each line are equally distributed between the words; the first word on each line is flushed left and the last word on each line is flushed right.
      3 risposte
      21
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura tramite un selezionatore. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso LinkedIn (San Jose, CA) nel mese di lug 2015

      Colloquio

      I contacted the recruiter regarding the position and she arranged a phone interview with 2 members of the team within a week. She told me that there would be the interview would be for 45 min and there would be 2 coding questions. So the interviewers would be evaluating speed,accuracy and also the efficiency of the code

      Domande di colloquio [1]

      Domanda 1

      The first question was determine if 2 strings are isomorphic and 2nd question was post fix expression evaluation . Both these questions can be found at leetcode.
      1 risposta
      1

      Colloquio per Software Engineer - Applications

      18 giu 2015
      Candidato anonimo a colloquio
      San Jose, CA
      Nessuna offerta
      Esperienza negativa
      Colloquio facile

      Candidatura

      Ho presentato la mia candidatura tramite un'altra fonte. La procedura ha richiesto 4 settimane. Ho sostenuto un colloquio presso LinkedIn (San Jose, CA) nel mese di mag 2015

      Colloquio

      I was contacted directly by LinkedIn, through LinkedIn for the interview. A phone screen was setup where I spoke with two people who barely spoke English. The only non-technical question they ever posed to me was "What your background?" after I said hello, and not a single follow-up question beyond my concise response. After listening to each of them provide a 30 second background of their own, both of which were completely non-comprehensible, they moved immediately to collabedit. With minor prompting, I was able to solve both questions they posed with optimal answers. I was very confident that amidst their lack of ability to effectively communicate, I had still performed extremely well. I followed up after the interview with a thank you email to the recruiter. After two weeks of hearing nothing, I sent another follow-up to the recruiter. Days after this I received a non-professional email from a new recruiter stating that my previous recruiter was no longer with the company, and that I did not perform to their expectations. In his words exactly, "I regret to inform you that your interview didn’t go as well as we had hoped it would. Do understand that these interviews are quite challenging...". I'm quite self critical, and had I fumbled on the technical questions even a little bit, I would shrug this off, but I did not. I asked the new recruiter if they could provide me with even a rough notion of the feedback so that I could grow as a developer, understand where I fell short, and work on those areas such that I could improve. Well, needless to say, I never got another response from him, and to this day have been completely ignored. I'm only thankful for this experience so that I know to avoid this company in the future. I'll take a hint from the only professional I interacted with (the first recruiter), waste no more time with this with this company, and like him, high tail it out of there and never look back.

      Domande di colloquio [1]

      Domanda 1

      What your background?
      Rispondi alla domanda
      4

      Colloquio per Applications Developer

      5 ago 2014
      Candidato anonimo a colloquio
      Nessuna offerta
      Esperienza negativa
      Colloquio difficile

      Candidatura

      Ho presentato la mia candidatura online. La procedura ha richiesto 3 settimane. Ho sostenuto un colloquio presso LinkedIn nel mese di lug 2014

      Colloquio

      The recruiter was very competent, unfortunately, can't say the same about the senior manager that interviewed. The manager deliberately asked questions that cannot be answered correctly, instead of to-the-point questions that can be answered.

      Domande di colloquio [1]

      Domanda 1

      Random, bound-to-fail questions were asked to throw off the person on the other end.
      Rispondi alla domanda