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

      AppNexus

      Parte di Xandr

      Azienda coinvolta

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su AppNexus | Offerte di lavoro di AppNexus | Stipendi di AppNexus | Benefit di AppNexus
      Colloqui di AppNexusColloqui per Software Developer presso AppNexusColloquio di AppNexus


      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.

      Colloquio per Software Developer

      22 feb 2011
      Candidato anonimo a colloquio
      New York, NY
      Nessuna offerta
      Esperienza negativa
      Colloquio difficile

      Candidatura

      Ho presentato la mia candidatura tramite un'altra fonte. La procedura ha richiesto una settimana. Ho sostenuto un colloquio presso AppNexus (New York, NY) nel mese di feb 2011

      Colloquio

      Phone screens were mostly about prior experience, with two technical questions. Then they sent me a programming assignment, which I apparently got wrong. I suggest using STL or some other advanced library. Without context of where the code will run and what the constraints are, it is hard to offer the right solutions or "fit". Here is the actual test: ------------- Please complete the two programming questions below. You can use any IDE you'd like as long as it is written in C or C++ code. We are looking for correctness and creativity. Impress us with your ability to optimize for memory usage and/or speed. Please comment on your design choices, any tradeoffs you make, as well as memory requirements and run time complexity. You will have 2 hours to complete the questions. Good luck! 1. Permutations of a string are defined to be all possible orderings of the characters within the string. For example, the string "cat" has the following permutations: { "cat", "cta","atc","act","tca","tac" }. Write an efficient C/C++ function, generate_permutations(), that will generate all the permutations of a given string. This program is expected to be invoked with the input string as the only parameter and expected to output the results to the standard output. Assumption : If the characters in the string are duplicated, some permutations will be identical, however they are still listed out. For example, "all" will generate the following permutations: { "all","all","lal","lal","lla","lla" }. Function prototype : void generate_permuations(const char* input_string) Test run : Please generate an output for the word “Eyjafjallajokull” (without the double quotes). 1a. Without actually coding the changes, explain how you would modify the above program to print out only the unique strings. For example, "all" would generate only { "all","lal","lla" }. 2. A game of Tic Tac Toe has just been completed. Write a function that prints whether X's or O's have won. The game board is passed in as an array of integers in row-column order. The Number 2 represents X and the number 1 represents O. A zero represents that the space is empty. For example the gameboard below would be represented as int* gameboard = [2,0,1,1,1,0,2,2,2] x - - o ------------------ o - o - ------------------ x - x - x Function Prototype: void tic_tac_toe(int* gameboard)

      Domande di colloquio [1]

      Domanda 1

      What is the hardest thing you ever had to do
      Rispondi alla domanda
      1

      Altre recensioni di colloqui per Software Developer presso AppNexus

      Colloquio per Software Engineer

      1 giu 2018
      Candidato anonimo a colloquio
      Portland, OR
      Nessuna offerta
      Esperienza negativa
      Colloquio facile

      Candidatura

      Ho presentato la mia candidatura tramite un'agenzia di reclutamento personale. Ho sostenuto un colloquio presso AppNexus (Portland, OR) nel mese di mag 2018

      Colloquio

      Painfully boring and lengthy phone call. This was not an interview, it was an interrogation. Seriously one of the most boring phone calls I've ever had. The hiring manager seemed like he'd never done an interview in his life.

      Domande di colloquio [1]

      Domanda 1

      Lots of questions about basic javascript stuff, way under my pay grade.
      Rispondi alla domanda

      Colloquio per Software Engineer

      9 apr 2018
      Dipendente anonimo
      New York, NY
      Offerta accettata
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura tramite un selezionatore. La procedura ha richiesto 4 settimane. Ho sostenuto un colloquio presso AppNexus (New York, NY)

      Colloquio

      One phone screen interview and 4 on-site interviews (coding, algorithm oriented & behavioral). Interviews were of average difficulty but dealt a lot with optimized algorithm oriented. Friendly visit to the office, stocked kitchens/cafeteria - Had a fun day interviewing!

      Domande di colloquio [1]

      Domanda 1

      All the questions were average difficulty.
      Rispondi alla domanda

      Colloquio per Software Engineer

      13 mar 2018
      Candidato anonimo a colloquio
      New York, NY
      Nessuna offerta
      Esperienza positiva
      Colloquio facile

      Candidatura

      Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso AppNexus (New York, NY) nel mese di feb 2018

      Colloquio

      It was a phone screen. I talked to a technical guy, who asked a few reasonable questions. He was polite and patient. I managed to answer the questions. There was also a coding part, which I screwed up -- made a few mistakes on the way. Not to sound like an excuse, but it is probably because it was my first time coding on a white board. The man was patient and helpful. Seems that it is no so bad, when you know how to approach it and usually they help you a bit, because it seems they are also human, not acting like robots. Maybe because of these mistakes I did not get to the next stage, but it is a good lesson for md too -- need to practice apparently.

      Domande di colloquio [1]

      Domanda 1

      Implement one of the string to number conversion functions or number to string on a while board online. Pretty simple for a good 1/2 hour work.
      1 risposta
      1

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

      avatar
      DONE by NONE
      3.8★Stipendio e benefit
      avatar
      Digital Natives
      4.4★Stipendio e benefit