Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Dell Technologies

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Dell Technologies | Empleos en Dell Technologies | Sueldos en Dell Technologies | Prestaciones en Dell Technologies
      Entrevistas en Dell TechnologiesEntrevistas para el cargo de Junior Data Path Engineer en Dell TechnologiesEntrevista en Dell Technologies


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista para Junior Data Path Engineer

      3 de ene de 2022
      Candidato de entrevista anónimo
      Sin ofertas

      Otras evaluaciones sobre las entrevistas para el cargo de Junior Data Path Engineer en Dell Technologies

      Entrevista para Junior Data Path Engineer

      15 de jul de 2022
      Candidato de entrevista anónimo
      Beer Sheva
      Sin ofertas
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Me postulé a través de una recomendación de un empleado. El proceso tomó 1 semana. Acudí a una entrevista en Dell Technologies en dic 2021

      Entrevista

      The HR called me, told me a bit about the job and scheduled a Zoom interview with the Team Leader. The Team Leader told me what the team does. Data Path is the reading and writing from the serves Dell makes. Then I told him about myself and after that he asked me a coding question. We discussed the solution and then I wrote the code on CodePile. There was supposed to be another question about operating systems and threads.

      Preguntas de entrevista [1]

      Pregunta 1

      Implement the following functions: /* Insert a new client to the data structure */ void insertClientWithToken(const char name[NAME_SIZE], const int token) /* Perform a lookup which will return the name of the client in the data structure with a token of max value */ const char* getClientWithMaxToken() const /* Retrieve the value of the token corresponding with the input name */ int getToken(const char name[NAME_SIZE]) const /* Increase the values of all the tokens added until now but not the ones added after this call */ void increaseAllTokensByValue(const int value) This is the main: int main() { ClientDs ds; ds.insertClientWithToken("Alice", 3); ds.insertClientWithToken("Bob", 5); cout << ds.getClientWithMaxToken() << endl; // prints "Bob" cout << ds.getToken("Alice") << endl; // prints 3 ds.increaseAllTokensByValue(3); cout << ds.getToken("Alice") << endl; // prints 6 cout << ds.getToken("Bob") << endl; // prints 8 ds.insertClientWithToken("Eve", 7); cout << ds.getClientWithMaxToken() << endl; // prints "Bob" return 0; } To finish off implement the class.
      Responder pregunta
      1
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Me postulé en línea. El proceso tomó 2 semanas. Acudí a una entrevista en Dell Technologies (Beer Sheva) en mar 2022

      Entrevista

      it was positive, I have done 2 interviews in the zoom, the first one was technical and they asked 3 questions in data science without coding, in the second interview they asked a question in multithreading and I had to code

      Preguntas de entrevista [1]

      Pregunta 1

      questions in data science and multithreading
      Responder pregunta