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

      Capital One

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Capital One | Offres d’emploi chez Capital One | Salaires chez Capital One | Avantages sociaux chez Capital One
      Entretiens chez Capital OneEntretiens d’embauche pour SWE Internship chez Capital OneEntretien chez Capital One


      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 SWE Internship

      9 avr. 2026
      Employé (anonyme)
      Offre acceptée
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 2 mois. J'ai passé un entretien chez Capital One en janv. 2025

      Entretien

      So there was a techinal OA first, then behavioral, then the super day. Super day had 3 sections which where normal behavioral, then a easy-medium leetcode quesiton, then a case interview (google it if you're curoius, its pretty weird). After that, go the ogger

      Autres retours d’entretien d’embauche pour un poste comme SWE Internship chez Capital One

      Entretien pour SWE Internship

      26 févr. 2024
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience positive
      Entretien moyen

      Candidature

      J'ai passé un entretien chez Capital One

      Entretien

      1. **Easy Question:** Describe the process to find the middle element of a linked list. In your explanation, include an efficient strategy that does not require knowing the total length of the list beforehand. 2. **Easy Question:** Explain how to reverse a string in Python without using any built-in functions or slicing. Your solution should detail a method that iterates through the string and constructs the reversed version character by character. 3. **Medium Question:** Discuss the implementation of a queue using two stacks. Your explanation should cover the logic behind using two stacks to simulate the FIFO (First In, First Out) behavior of a queue, including how to optimize for either enqueue or dequeue operations. 4. **Hard Question:** Elaborate on designing a data structure that supports the following operations: insert, delete, and get_random_element, all in constant time complexity. Your solution should detail the data structures you would use, how you would maintain them to achieve constant time for each operation, and how to handle potential issues like maintaining randomness when elements are deleted.

      Questions d'entretien [1]

      Question 1

      You are given a string, docString, representing a line of documentation for a programming language: • Function and variable names, as well as constants, are enclosed in backticks (* ) • Each quoted sentence can contain several items (functions, variables, and constants) separated by space. • Function and variable names are written in snake case. Snake case means that after the first word in the name, additional words are separated by an underscore - Each word consists only of lowercase English letters. • Constants are written in upper case. Upper case format is the same as snake case except that each word consists only of uppercase English letters. Your task is to convert all function and variable names in the docstring from snake case to camel case. Constants should not be changed.
      Répondre à cette question