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

      Chewy

      Empresa engajada

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


      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

      23 de fev. de 2021
      Candidato(a) sigiloso(a) à entrevista
      Boston, MA
      Oferta recusada
      Experiência negativa
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me de outra forma. Fui entrevistado pela Chewy (Boston, MA) em jan. de 2021

      Entrevista

      Absolute unmitigated disaster of a hiring process. Full Stop. 
 Was told they were too busy to schedule a phone screen, even with an HR/ or recruiter to discuss the role, or what they were looking for, in order for me to get any speaking time I had to pass their tech review process. First interaction was a timed 10 minute quiz, featuring 12 multiple choice question on hackerRank of picky, terribly useful or even well-know Java trivia. Getting 8 out of 12 was enough to continue, although I doubt the are consistent on that. This qualified me for a Code Screen, with a Mid-level engineer, where we again used a HackerRank coding environment, of a partially completed Coding exercise. Not terribly hard or interesting, counting number of words in a paragraph, and the number of occurrences, along with which line they occurred in, and printing out in a specific format. Does there really need to be curly brackets around the text output ? Really? Ok let’s make sure we get that.

Finally I was told the process was to conclude with a 45 minute session with the Hiring Manager, geared towards allowing me to hear about the role, and get any questions I might have answered. As you might have guessed, none of these things were true; He was not the hiring manager, he was barely even a manager, and you guessed it, another round of inane, “design” problems. He did assure me he would give me , and I Quote 8 minutes at the end to ask any questions I might have. After being asked how to design a system that took resturant reservations. Vague, unguided, 5 word prompt, “design a reservation system”. 
 After 2.5 weeks, and three rounds of quizzes, I get my 8 minutes to ask my question, ”is this role remote” answer: I’m not sure. (I was applying because it was posted as remote). 

And you guessed it, all of a sudden it’s not a remote role, even in a pandemic we expect folks to be in the office at least 3 days a week.
 Great, thanks for so effectively showing me how it would be to work at this dumpster fire of an organization. I’ll Pass.

      Perguntas de entrevista [3]

      Pergunta 1

      Interface Inherence A Java class or inherence may inherit from ______ interface(s) Pick ONE option Zero One Zero and One Zero, One, or more than One Class Inherence Java class may inherit from _______ other class(es) Pick ONE option Zero One Zero or One Zero, One, or more than One Abstract Methods If a class contains an abstract method then that class must be _______ Pick ONE option an interface declared to be abstract implemented completely annotated with @Native Member Variable Initialization Member variables containing the keyword _____must be initialized in the class constructor and cannot be modified thereafter Pick ONE option private static final volatile Constructor Ordering The constructor of a parent class will always be invoked ______ the constructor of its child Pick ONE option before concurrently after N/A, constructor ordering is not guaranteed by the language specification Access Modifiers Default Consider the following class: package com.example public class MyClass { void method 1 () { } } Which classes are permitted to invoke method 1 ()? Pick ONE option MyClass only MyClass and all classes that extend MyClass MyClass and all classes in the package com.example MyClass and all classes in the package com.example, and all classes that extend MyClass Exception Handling: Unchecked Exceptions Which of the following statements is true about unchecked exceptions? Pick ONE option Unchecked exceptions must be declared by methods that throw them Unchecked exceptions cannot be taught Unchecked exceptions must extend either java.lang.RuntimeException or java.lang.Error Unchecked exceptions can only be thrown by the Java SDK Operators and Types What is the result of compiling and executing the following code? if ((1/2) && false) { System.out.printin(“true”); } else { System.out.printin(“false”); } Pick ONE option true is output to stdout false is output to stdout Compilation error JVM exits with java.lang.ArithmeticException at runtime Java 8: default keyword In Java 8 the default keyword may be used to …… Select answers that make the preceding statement true. Pick ONE OR MORE options Specify the default behavior in a switch statement in the event that none of the case statements results in a match Indicate that a class, method, or member variable has a default (i.e. package- private) visibility Specify the default value for a constructor or method argument Specific the default implementation of a method in an interface Lambda Scope Consider the following method: List<Integrator> modPlusOneFilter(List<Integer>input, int mod) { mod ++ return input.stream() .filter(element ->element % mod = = 0) .collect(Collectors.toList()); The code does not compile because of a problem with the lambda’s use of the mod variable. In order to access mod from within the lambda function mod must be: Pick ONE option final or effectively final static a non-primitive type auto-boxed Thread Safety The ____ keyword can be used to define a critical selection in which only one thread can execute at any given time Pick ONE option private final volatile synchronized Thread Pools ____ may be submitted to an ExecutorService Pick ONE OR MORE options Timers Runnables Callables Threads
      Responder à pergunta

      Pergunta 2

      Given the block of input text, print the expected output: Input:  Question, what kind of bear is best?  That's a ridiculous question!  False. Black bear.    Expected Output: a: {1:2}  bear: {2:1,4}  best: {1:1}  black:{1:4}  false:{1:3}  is:{1:1}  kind:{1:1}  of:{1:1}  question:{2:1,2}  ridiculous:{1:2}  that's:{1:2}  what:{1:1} Some code already provided: public static void main(String[] args) throws IOException {     BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));     int inputLinesCount = Integer.parseInt(bufferedReader.readLine().trim());     List<String> inputLines = IntStream.range(0, inputLinesCount).mapToObj(i -> {       try {         return bufferedReader.readLine();       } catch (IOException ex) {         throw new RuntimeException(ex);       }     })         .collect(Collectors.toList());     concordance(inputLines);     bufferedReader.close();   }   static void concordance(List<String> inputLines) { // To be Imlpemented }
      Responder à pergunta

      Pergunta 3

      Tell me about yourself, what you are working on, Verbally describe a system design that takes a Restaurant reservation.
      Responder à pergunta
      40

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

      Entrevista para Sr. Software Engineer

      26 de mai. de 2023
      Candidato(a) sigiloso(a) à entrevista
      Seattle, WA
      Nenhuma oferta
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me online. O processo levou 2 semanas. Fui entrevistado pela Chewy (Seattle, WA) em mai. de 2023

      Entrevista

      Recruiters were super helpful and accommodated my request to reschedule the interview (because of personal matters). All interviewers were very friendly and the interview was more like a discussion with your teammate.

      Perguntas de entrevista [1]

      Pergunta 1

      Phone screen round: LC medium question (on arrays). Interviewer asked about the time complexity and asked to optimize. Onsite round of interviews: (there were 4 interviews) 1. LC medium problem on string manipulation. Interviewer asked few behavioral type questions as well. 2. This interview was about code debugging and writing test cases to meet the requirements. 3. System design interview. Interviewer asked to design Twitter clone. 4. Behavioral round with the Director of Engineering. He asked 3 "Tell me about a time..." type questions and asked follow-up questions to know more about the scenario that I mentioned. Overall, very good interview process. Expect behavioral type questions in all rounds. It would be great to prepare "what could you have done differently in project X that you talked about" questions.
      Responder à pergunta
      5

      Entrevista para Senior Software Engineer

      1 de mar. de 2023
      Candidato(a) sigiloso(a) à entrevista
      Oferta recusada
      Experiência positiva
      Entrevista difícil

      Candidatura

      Candidatei-me de outra forma. O processo levou 2 semanas. Fiz uma entrevista na empresa Chewy.

      Entrevista

      Initial phone screening with a recruiter, followed by an hour technical review using HackerRank. Virtual onsite consisted of debugging a parking lot, coding (leetcode/ return top K elements), system design (reservation app), and behavioral round. The interviewers were okay. Some more personable/engaging than others. Overall long process for a non MAANG company. Ultimately I tuned down the offer because I couldn’t look past the negative company reviews

      Perguntas de entrevista [1]

      Pergunta 1

      Behavioral round was focused on “customer first” and how your previous experiences related to that
      Responder à pergunta
      2

      Entrevista para Sr. Software Engineer

      27 de fev. de 2023
      Candidato(a) sigiloso(a) à entrevista
      Seattle, WA
      Oferta recusada
      Experiência negativa
      Entrevista com nível médio de dificuldade

      Candidatura

      O processo levou 3 semanas. Fui entrevistado pela Chewy (Seattle, WA) em fev. de 2023

      Entrevista

      The interview process was very similar to Amazon. One screening followed by one day of onsite. The onsite had one system design, one coding and one behavioral interview. The interviewers were friendly and I cleared all rounds with flying colors. The only negative thing was the recruiter experience. I had discussed my minimum expectations with the recruiter before starting the interview process. After hearing my expectations, I was recalibrated for Sr Engineer role from a SDE 2 role. But despite clearing the Sr SDE interview the offer given to me was way low balled. Less than what I make as a SDE 2 in my current organization and like 30% less than my expectations. In the end, the whole thing felt like a huge waste of time and resources for both parties and I would not be interested in interviewing with them again.

      Perguntas de entrevista [1]

      Pergunta 1

      Leetcode medium questions related to standard bfs, strings etc.
      1 resposta
      1