Upload Button Icon Add office photos

Nvidia

Compare button icon Compare button icon Compare

Filter interviews by

Nvidia Software Engineer2 Interview Questions and Answers

Updated 8 Mar 2024

Nvidia Software Engineer2 Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. A lot of questions about OS
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to cache memory
Round 3 - Technical 

(1 Question)

  • Q1. C++ standard questions

Interview Preparation Tips

Topics to prepare for Nvidia Software Engineer2 interview:
  • OS
  • C++
  • Multithreading
Interview preparation tips for other job seekers - learn basics of OS

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is es6 in javascript language
  • Ans. 

    ES6, also known as ECMAScript 2015, is the sixth major release of the JavaScript language that introduced new features and syntax improvements.

    • Introduced let and const for variable declarations

    • Added arrow functions for more concise syntax

    • Included classes for object-oriented programming

    • Introduced template literals for easier string interpolation

    • Added default parameters and rest parameters for functions

  • Answered by AI
  • Q2. What is hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable and function declarations are hoisted to the top of their scope.

    • Only declarations are hoisted, not initializations.

    • Function declarations take precedence over variable declarations.

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Feb 2021. There were 5 interview rounds.

Round 1 - Coding Test 

4 questions in one and a half hour

Round 2 - Technical 

(1 Question)

  • Q1. Linked List questions, Python questions, questions on cloud technology
Round 3 - Technical 

(3 Questions)

  • Q1. Many lambda functions were asked
  • Q2. One question on circular queue
  • Q3. Code to be written on notepad not on IDE
  • Ans. 

    Writing code on notepad instead of an IDE

    • Ensure proper indentation and formatting

    • Use comments to explain code

    • Compile and test code manually

    • Save frequently to avoid losing work

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Golang Concurrency questions, binary tree question
Round 5 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.
  • Q4. Why are you looking for a change?
  • Q5. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - They ask fundamentals a lot and practice to code on notepad

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

It was in the morning. Because of covid test was from home. We had 50 MCQ and 1 coding question. The coding question was pretty easy. MCQ were mixed, we even had questions from machine learning.

  • Q1. 

    Maximum Path Sum Between Two Leaves

    Given a non-empty binary tree where each node has a non-negative integer value, determine the maximum possible sum of the path between any two leaves of the given tree.

    ...
  • Ans. 

    Find the maximum path sum between two leaf nodes in a binary tree.

    • Traverse the tree to find the maximum path sum between two leaf nodes

    • Consider both cases where the path passes through the root and where it doesn't

    • Keep track of the maximum sum while traversing the tree

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Interview round. Questions were based on projects, database and one coding question

  • Q1. 

    Longest Subarray Zero Sum Problem Statement

    Given an array of integers arr, determine the length of the longest contiguous subarray that sums to zero.

    Input:

    N (an integer, the length of the array)
    arr (...
  • Ans. 

    Find the length of the longest contiguous subarray that sums to zero in an array of integers.

    • Use a hashmap to store the cumulative sum and its corresponding index.

    • Iterate through the array, updating the sum and checking if the current sum exists in the hashmap.

    • If the sum exists in the hashmap, update the maximum length of subarray with sum zero.

    • Return the maximum length of subarray with sum zero.

  • Answered by AI
Round 3 - Telephonic Call 

Round duration - 40 minutes
Round difficulty - Easy

Managerial round. Was asked questions on projects and management

Round 4 - HR 

Round duration - 10 minutes
Round difficulty - Easy

HR just asked about basic stuffs and all. Nothing technical

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7 CGOACisco interview preparation:Topics to prepare for the interview - Data structures, Computer Networking, DBMS, College projects, C++Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice leetcode questions
Tip 2 : Be very well aware of the projects
Tip 3 : Stay calm

Application resume tips for other job seekers

Tip 1 : Don't use fancy colour
Tip 2 : Write more about stuffs which you are confident like projects or any tech

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Question were fairly technical.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the basics , work on the project and be clear about that.

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is OOPs concept?
  • Ans. 

    OOPs concept stands for Object-Oriented Programming concepts which includes encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation is the process of hiding the implementation details from the user.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects to take on multiple forms or behaviors.

    • Abstraction is the process of hiding unnecessary details from

  • Answered by AI
  • Q2. What is lazy loading?
  • Ans. 

    Lazy loading is a technique used to defer the loading of non-critical resources until they are needed.

    • It improves page load time and performance.

    • It is commonly used for images, videos, and other media files.

    • It can be implemented using JavaScript libraries like LazyLoad or Intersection Observer API.

    • Lazy loading can also be used for modules and components in web applications.

    • It helps to reduce the initial load time of th

  • Answered by AI
  • Q3. What is eager loading?
  • Ans. 

    Eager loading is a technique used in software development to load related data in advance to avoid multiple database queries.

    • Eager loading is used to optimize database queries and improve performance.

    • It loads all the required data in a single query instead of making multiple queries.

    • It is commonly used in Object-Relational Mapping (ORM) frameworks like Hibernate, Entity Framework, etc.

    • Eager loading can be used with var...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearing Test is the key

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Tell us about yourself ?
  • Q2. Any knowledge of Networks/DS?
  • Ans. 

    Yes

    • Knowledge of network protocols and architectures

    • Understanding of data structures and algorithms

    • Experience with network troubleshooting and analysis

    • Familiarity with network security and encryption

    • Proficiency in network programming and socket programming

  • Answered by AI
  • Q3. Which projects do you like the most?
  • Q4. How was your test ?
  • Ans. 

    The test went well, I was able to complete all the tasks within the given time frame.

    • I prepared well for the test by reviewing relevant materials

    • I managed my time effectively during the test

    • I was able to solve all the problems and complete all the tasks

    • I double-checked my work to ensure accuracy

  • Answered by AI
  • Q5. Why CISCO ? Tell something about it
  • Q6. Which companies have you applied for till day 4 ?

Interview Preparation Tips

Round: Test
Experience: 30 questions on Technical knowledge - Basic C, DS, Microprocessor, OS, Networks, Circuit Designs.
20 questions on Aptitude.
Total Questions: 50

Round: Technical Interview
Experience: It was a 25-30 minute round. Apart from the questions mentioned, they asked questions related to BTP(Signal Processing) and Microprocessor 8085.
Tips: Basic C, EE 370 and Microprocessor 8085 will be helpful. They will look for Networks related questions. Revise the related courses and attend PPTs.

Round: HR Interview
Experience: It was a 15-minute round.

General Tips: Analytical thinking is important and you should have good technical knowledge and a decent academic record.
College Name: IIT KANPUR

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: It was a blend of topics from IT,CSE and ECE. Try to concentrate on coding and networks for this round. mostly luck based

Round: Group Discussion
Experience: A very easy round. Can easily clear it if you have minimum skills

Round: Technical Interview
Experience: needs a sound knowledge in networking .

Round: HR Interview
Experience: your personality and the way you behave matters a lot. Try to be humble and truthful

General Tips: as I mentioned earlier keep trying never loose hope
Skills: communication skills, grasping power , knowledge
College Name: VIT VELLORE
Motivation: high package :P
Funny Moments: none . but had to go to bangalore for interview which was fun :)

Interview Preparation Tips

Round: Resume Shortlist
Tips: It will be good to have a GPA of 8 and above

Round: Test
Experience: Questions were easy it were good at C and basic maths. Questions were distributed on all aspects of computer science such as Operating Systems, Few Output Question, Data Structures and Application layer networking . In basic aptitude most questions fall under Probability, distance and time and few others.
Duration: 60 minutes
Total Questions: 50

Skills: Communication, Basic Coding, Math Puzzle
College Name: NIT Surathkal

Interview Preparation Tips

Round: Test
Experience: The test was MCQ type. It comprised of questions from Operating Systems, Data Structures, Microprocessors, logical Reasoning, Aptitude and Computer Networks. No negative marking was there.
Tips: One needs to be fast as you can't spend much time on one question.
Duration: 60 minutes
Total Questions: 50

Round: Technical Interview
Experience: I was given 2 coding questions to solve and basics of oops, operating systems, data structures and networks were asked. 3-4 questions were asked in each topic mentions above. The interviewer also asked 2 puzzles which were the standard ones. He first asked me if I knew the topic or not, then only he asked me questions about it. But that doesn't mean that you can skip all the above mentions topics.
Tips: Be relaxed and confident and try to discuss your approach with the interviewer.

Round: Technical Interview
Experience: 2 Coding questions and 3-4 questions from operating systems and networks.Questions also from the mentioned projects.

Round: HR Interview
Experience: Standard HR interview with questions like what Cisco does and why they should hire you. He also asked me questions from the CV.

Tips: Be confident and mug up your cv well

Round: HR Interview
Experience: It was just a formality where he just asked about my background and whether I would be able to move to bangalore and Why I want to join Cisco.

Skills: Confidence, Problem Solving Skills, Operating System Basics, Coding Skills, Object Oriented Programming (OOP) Basics, Computer Networking, Data Strrutures
College Name: IIT Guwahati

Nvidia Interview FAQs

How many rounds are there in Nvidia Software Engineer2 interview?
Nvidia interview process usually has 3 rounds. The most common rounds in the Nvidia interview process are Technical.
What are the top questions asked in Nvidia Software Engineer2 interview?

Some of the top questions asked at the Nvidia Software Engineer2 interview -

  1. questions related to cache mem...read more
  2. A lot of questions about...read more
  3. C++ standard questi...read more

Tell us how to improve this page.

Nvidia Software Engineer2 Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Cisco Interview Questions
4.2
 • 375 Interviews
Indus Towers Interview Questions
3.8
 • 183 Interviews
BT Business Interview Questions
4.0
 • 81 Interviews
Tejas Networks Interview Questions
4.0
 • 76 Interviews
Arista Networks Interview Questions
4.1
 • 43 Interviews
Redington Interview Questions
4.0
 • 34 Interviews
View all
Nvidia Software Engineer2 Salary
based on 4 salaries
₹16.5 L/yr - ₹21 L/yr
At par with the average Software Engineer2 Salary in India
View more details

Nvidia Software Engineer2 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Processing Executive
1.1k salaries
unlock blur

₹1.1 L/yr - ₹5 L/yr

Quality Analyst
144 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Software Engineer
141 salaries
unlock blur

₹12 L/yr - ₹42 L/yr

Data Analyst
118 salaries
unlock blur

₹1.9 L/yr - ₹8.2 L/yr

Senior Software Engineer
89 salaries
unlock blur

₹17 L/yr - ₹51.7 L/yr

Explore more salaries
Compare Nvidia with

Qualcomm

3.8
Compare

Intel

4.2
Compare

Sterlite Technologies

3.8
Compare

Indus Towers

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview