Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      AppNexus

      Fait partie de Xandr

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur AppNexus | Offres d’emploi chez AppNexus | Salaires chez AppNexus | Avantages sociaux chez AppNexus
      Entretiens chez AppNexusEntretiens d’embauche pour Software Developer chez AppNexusEntretien chez AppNexus


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Software Developer

      22 févr. 2011
      Candidat à l'entretien anonyme
      New York, NY
      Aucune offre
      Expérience négative
      Entretien difficile

      Candidature

      J'ai postulé via une autre source. Le processus a pris 1 semaine. J'ai passé un entretien chez AppNexus (New York, NY) en févr. 2011

      Entretien

      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)

      Questions d'entretien [1]

      Question 1

      What is the hardest thing you ever had to do
      Répondre à cette question
      1

      Autres retours d’entretien d’embauche pour un poste comme Software Developer chez AppNexus

      Entretien pour Software Engineer

      1 juin 2018
      Candidat à l'entretien anonyme
      Portland, OR
      Aucune offre
      Expérience négative
      Entretien facile

      Candidature

      J'ai postulé via une agence de recrutement. J'ai passé un entretien chez AppNexus (Portland, OR) en mai 2018

      Entretien

      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.

      Questions d'entretien [1]

      Question 1

      Lots of questions about basic javascript stuff, way under my pay grade.
      Répondre à cette question

      Entretien pour Software Engineer

      9 avr. 2018
      Employé (anonyme)
      New York, NY
      Offre acceptée
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 4 semaines. J'ai passé un entretien chez AppNexus (New York, NY)

      Entretien

      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!

      Questions d'entretien [1]

      Question 1

      All the questions were average difficulty.
      Répondre à cette question

      Entretien pour Software Engineer

      13 mars 2018
      Candidat à l'entretien anonyme
      New York, NY
      Aucune offre
      Expérience positive
      Entretien facile

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez AppNexus (New York, NY) en févr. 2018

      Entretien

      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.

      Questions d'entretien [1]

      Question 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 réponse
      1

      Meilleures entreprises pour « Rémunération et avantages » près de chez vous

      avatar
      Intel Corporation
      3.7★Rémunération et avantages
      avatar
      Apple
      4.2★Rémunération et avantages
      avatar
      Lenovo
      3.8★Rémunération et avantages
      avatar
      Honeywell
      4.0★Rémunération et avantages