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

      NVIDIA

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: NVIDIA reviews | NVIDIA jobs | NVIDIA salaries | NVIDIA benefits | NVIDIA conversations
      NVIDIA interviewsNVIDIA Software Validation Engineer interviewsNVIDIA 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.

      Top companies for "Compensation and Benefits" near you

      avatar
      Smartmatic
      3.7★Compensation and benefits

      Software Validation Engineer Interview

      21 Oct 2025
      Anonymous interview candidate
      No offer
      Negative experience
      Average interview

      Application

      I applied online. The process took 4 months. I interviewed at NVIDIA in Jan 2025

      Interview

      First I had a screen call with a recruiter. Then I had two technical interviews with senior engineers and managers. Then I had a behavioral/Technical interview with VP Last interview was with an HR.

      Interview questions [1]

      Question 1

      # Given an array of random numbers, push all the zeroes of a given array to the end of the array. For example, if the given array is {1, 9, 8, 4, 0, 0, 2, 7, 0, 6, 0}, it should be changed to {1, 9, 8, 4, 2, 7, 6, 0, 0, 0, 0}. The order of all other elements should be same. Expected time complexity is O(n) and extra space is O(1). # Input : arr[] = {1, 2, 0, 4, 3, 0, 5, 0}; # Output : arr[] = {1, 2, 4, 3, 5, 0, 0, 0}; # Input : arr[] = {1, 2, 0, 0, 0, 3, 6}; # Output : arr[] = {1, 2, 3, 6, 0, 0, 0};
      Answer question