Multiple steps, intro, team meet. Two coding sessions. Hard coding interview. Leet code style. Nice people. Took long time to schedule next. Felt that I was appreciated. Remote, people different parts over world.
I applied through college or university. I interviewed at NVIDIA
Interview
I got 2 technical interviews.
First phone interview, they asked some language specific questions with C++. I didn't do well on those questions since the last time I worked with C++ was like 3 years ago. After I told them I'm more familiar with C#, they tried to find the similarities between C# and C++ to make it easier for me.
Second phone interview with the team lead. Was told that they care more about my learning skills and my programming background than my knowledge on some specific programming language. I was asked some questions related to OS, computer architecture, and a few questions about bit manipulation. There were also questions about myself (why I applied for this job - since it does not really match my skillset.....), discuss my shortcomings etc.
Interviewers were nice and didn't make me feel too bad even if I couldn't answer half of the questions. The hiring team replied to my email promptly. Overall good experience.
Interview questions [3]
Question 1
C++ specific questions such as constructor, destructor, virtual functions, variable scope, global variables.
I applied online. I interviewed at NVIDIA (Haifa) in Jun 2026
Interview
Online assessment consisting of 3 data structures and algorithms questions. First question an easy array question. Second was a hard heap question and the third was a medium 2D dynamic programming question.
Interview questions [1]
Question 1
DP problem: You are given several service options. For each option i, bandwidth[i] is the amount of bandwidth required, and request[i] is the number of requests that can be handled using that bandwidth.
Given a maximum bandwidth limit totalBandwidth, choose a subset of the options so that the total bandwidth used does not exceed totalBandwidth, while the total number of handled requests is as large as possible.
Return the maximum number of requests that can be handled.
I applied online. I interviewed at NVIDIA (Santa Clara, CA) in Jun 2026
Interview
I only made it to the screening round, which involves two technical rounds, I was interviewed by a director and a senior engineer. I could not answer the questions, but the interviewers were very professional and patient throughout the whole process.
Interview questions [1]
Question 1
What is the difference between a const pointer int vs a pointer const int?