Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      Dell Technologies

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: Dell Technologies reviews | Dell Technologies jobs | Dell Technologies salaries | Dell Technologies benefits
      Dell Technologies interviewsDell Technologies Junior Data Path Engineer interviewsDell Technologies interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Junior Data Path Engineer Interview

      3 Jan 2022
      Anonymous interview candidate
      No offer
      Positive experience
      Difficult interview

      Application

      I applied through an employee referral. The process took 1 week. I interviewed at Dell Technologies in Dec 2021

      Interview

      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.

      Interview questions [1]

      Question 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.
      Answer question
      1

      Other Junior Data Path Engineer interview reviews for Dell Technologies

      Junior Data Path Engineer Interview

      15 Jul 2022
      Anonymous interview candidate
      Beersheba
      No offer
      Positive experience
      Average interview

      Application

      I applied online. The process took 2 weeks. I interviewed at Dell Technologies (Beersheba) in Mar 2022

      Interview

      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

      Interview questions [1]

      Question 1

      questions in data science and multithreading
      Answer question