Ir para o conteúdoIr para a pasta
  • Vagas
  • Empresas
  • Salários
  • Para empresas

      Avance em sua carreira

      Descubra qual pode ser seu salário, conquiste a vaga dos seus sonhos e compartilhe insights de qualidade de vida com sigilo.

      employer cover photo
      employer logo
      employer logo

      Addepar

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Addepar | Vagas da empresa Addepar | Salários da empresa Addepar | Benefícios da empresa Addepar
      Entrevistas da empresa AddeparEntrevistas do cargo de Senior Software Engineer da empresa AddeparEntrevista da empresa Addepar


      Glassdoor

      • Sobre
      • Prêmios
      • Blog
      • Fale conosco

      Empresas

      • Conta gratuita de empresa
      • Área da empresa
      • Blog para empresas

      Informações

      • Ajuda
      • Regras da Comunidade
      • Termos de Uso
      • Privacidade e opções de anúncios
      • Não venda nem compartilhe minhas informações
      • Ferramenta de consentimento de uso de cookies

      Trabalhe conosco

      • Anunciantes
      • Carreiras
      Baixe o aplicativo:

      • Busque por:
      • Empresas
      • Vagas
      • Localizações

      Copyright © 2008-2026. Glassdoor LLC. “Glassdoor”, “Worklife Pro”, “Bowls” e o logotipo do Glassdoor são marcas comerciais pertencentes à Glassdoor LLC.

      Empresas seguidas

      Fique por dentro de todas as oportunidades e dicas internas seguindo as empresas de seus sonhos.

      Buscas de vagas

      Comece a buscar vagas para receber atualizações e recomendações personalizadas.

      Entrevista para Senior Software Engineer

      3 de nov. de 2025
      Funcionário(a) sigiloso(a)
      New York, NY
      Oferta aceita
      Experiência neutra
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me por meio de recrutador(a). Fui entrevistado pela Addepar (New York, NY) em out. de 2024

      Entrevista

      I had a phone screen with a recruiter, then an interview round, then a team fit round. The interview round had 3 technical interviews. The team fit round involved talking to multiple hiring managers.

      Perguntas de entrevista [1]

      Pergunta 1

      Reconciliation is a term Addepar uses for a set of correctness and consistency measures applied to the data we receive and use in financial calculations. One of the most common reconciliation checks is called unit reconciliation, which answers the question: Does the transaction history add up to the number of shares the bank says I have? For example, if the bank said I had 100 shares of Apple at the end of yesterday, and I bought 20 shares of Apple today, then we expect the bank to report 120 shares at the end of today. This surprisingly isn't always the case. The bank may send incomplete data, we may be parsing it incorrectly, or there may be events like corporate actions or trade settlement lag that cause an inconsistency. Unit reconciliation is very important because numbers that don't add up shouldn't be trusted for any metrics. ---- Write a function that takes three lists of strings as input: * DO-POS - describes the positions in the account at the end of day 0. Each record is a space-separated pair of symbol and shares. For example, "AAPL 10" means 10 shares of AAPL were held at the end of day 0, and "Cash 123.45" means we had $123.45 in the account at the end of day 0. * D1-TRN - describes the transactions that occurred in the account on day 1. Each record is a space-separated collection. The first column is the transaction code, remaining columns depend on the given transaction code. * D1-POS - describes the positions in the account at the end of day 1, and has the same format as 'DO-POS'. The function should output a list of positions with unit reconciliation errors: * Each record is a space-separated pair of symbol and difference between the actual quantities and the expected ones. * Only positions with unit reconciliation problems should appear in the list. * The list should be empty if no reconciliation issues are found. * For example: "GOOG 20" indicates we ended up the day with 20 extra shares of GOOG that were not explained by the intra-day transactions, while "Cash -20" shows that we ended the day with 20 fewer units of cash than expected. To start us off, let's support two basic transaction types and a single cash currency (assume USD for currency): * Buy [BY] - Besides the first two generic fields, two additional ones: units and total value - For example, "AAPL BY 10 1234.56" means 10 shares of AAPL were bought for a total cost of $1234.56 Sell [SL] * Same as 'BY' case, but sells shares for dollars ### Sample Input ["AAPL 100", "GOOG 200", "Cash 10"] # DO-POS ["AAPL SL 50 30000", "GOOG BY 10 10000"] # D1-TRN ["AAPL 50", "GOOG 220", "Cash 20000"] # D1-POS ### Sample Output ["GOOG 10", "Cash -10"]
      1 resposta
      4

      Outras avaliações de entrevista de vagas de Senior Software Engineer da empresa Addepar

      Entrevista para Senior Software Engineer

      24 de dez. de 2025
      Candidato(a) sigiloso(a) à entrevista
      Oferta recusada
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me online. Fui entrevistado pela Addepar em nov. de 2025

      Entrevista

      Interview process: 1st round 60 mins hackerrank challenge with a real world engineering, debugging, and test cases. 2nd round Tech deepdive with a hiring manager 3rd round: Coding system design behavioral Hiring manager

      Perguntas de entrevista [2]

      Pergunta 1

      Design Messenger/Chat Application like whatsapp. Build the APIs
      Responder à pergunta

      Pergunta 2

      Process Stock Transactions to Generate Portfolio. Given a list of transactions for multiple days and multiple stocks and cash (Buy and Sell), provide the final output of stocks and cash and their respective quantity.
      Responder à pergunta
      3

      Entrevista para Senior Software Engineer

      12 de dez. de 2025
      Candidato(a) sigiloso(a) à entrevista
      Nenhuma oferta
      Experiência positiva
      Entrevista difícil

      Candidatura

      Candidatei-me por indicação de um funcionário. Fui entrevistado pela Addepar em nov. de 2025

      Entrevista

      I applied for a Frontend role and had an initial 30-minute discussion with HR over Zoom/Meet. After that, there was a DSA knockout round, which I cleared. Following this, three interviews were scheduled: two technical rounds and one managerial/behavioral round. The technical interviews were quite unique—focused on areas not typically asked in frontend interviews. They required fast problem-solving, strong familiarity with DOM APIs, and handling grid-based calculations. These are definitely areas that need specific practice. The final round went average. I was able to discuss a partial solution, but due to time constraints, I couldn't fully complete it. I was eventually rejected. I felt I performed well enough to move forward, but it seems every round needed to be near-perfect to progress.

      Perguntas de entrevista [3]

      Pergunta 1

      DSA question - need to create a recursively tree type structure.
      Responder à pergunta

      Pergunta 2

      On a sorting algorithm, we need to create a visual representation of the sorting algorithm in JS, where after each second we should see the elements shuffling in the array, and finally the sorted array.
      Responder à pergunta

      Pergunta 3

      Create a custom range slider
      Responder à pergunta
      1

      Entrevista para Senior Software Engineer

      3 de ago. de 2025
      Candidato(a) sigiloso(a) à entrevista
      Nenhuma oferta
      Experiência neutra
      Entrevista difícil

      Candidatura

      Candidatei-me online. Fui entrevistado pela Addepar em jun. de 2025

      Entrevista

      30 min initial screening call with recruiter. 1 hour basic coding screening test. Then 3 interviews in a day that included 1 hour coding test, 1 hour system design test, and 1 hour behavioral interview, each one with a different set of people. Almost everyone was punctual and cordial but I don't think the system design test was executed in a way that could give any candidate a fair evaluation. I had a workable MVP for the question that was asked of me but didn't get a chance to develop it in time as I kept being interrupted by the interviewer asking me deep dive questions about what I was putting on the whiteboard. Got feedback from the recruiter who told me I did well in all the rounds except the system design and they thus decided not to proceed with my application.

      Perguntas de entrevista [1]

      Pergunta 1

      Leetcode medium questions. Design Ticketmaster. Tell us about a previous project you oversaw.
      Responder à pergunta
      3

      As melhores empresas na categoria “Remuneração e benefícios” perto de você

      avatar
      Cisco
      4.0★Remuneração e benefícios
      avatar
      Capgemini
      3.7★Remuneração e benefícios
      avatar
      SAP
      3.9★Remuneração e benefícios
      avatar
      Bloomberg
      4.0★Remuneração e benefícios