Ik heb via een hogeschool of universiteit gesolliciteerd. De procedure duurde 1 dag. Ik heb gesolliciteerd bij NVIDIA in okt 2010
Sollicitatiegesprek
technical interview, lasted about 45 minutes
asked basic questions about inverters, cmos, bjt, mosfet
lady was kind and patient; gave me plenty of time and did not rush me for answers
2 OA rounds,(selected for 2nd after the first)
Then got an interview call
Asked about the invertor characteristics and related stuff, how to reduce congestion ( bookish answer did not work) , and question related to Starry with derates
Ik heb online gesolliciteerd. Ik heb gesolliciteerd bij NVIDIA (Tel Aviv) in apr 2026
Sollicitatiegesprek
2 technical interviews lasting about two hours each, the first at a more basic level of VLSI and digital logic systems, and the second interview went into more depth and also included questions on data structures and algorithms.
Sollicitatievragen [1]
Vraag 1
Question 1
You are given an array of distinct integers.
Your task is to:
Find the smallest absolute difference between any two elements in the array.
Print all pairs of numbers that have this smallest difference.
a. In each pair, the smaller number comes first.
b. Print the pairs in ascending order.
Example 1
Input:
n = 4 elements, and numbers = [6, 2, 4, 10]
Output:
2 4
4 6
Explanation:
The minimum absolute difference is 2, and the pairs with that difference are (2, 4) and (4, 6).
Example 2
Input:
n = 4 elements, and numbers = [4, -2, -1, 3]
Output:
-2 -1
3 4
Explanation:
The minimum absolute difference is 1, and the pairs with that difference are (-2, -1) and (3, 4).
Constraints
2 ≤ n ≤ 10⁵
-10⁹ ≤ numbers[i] ≤ 10⁹
Test Case Input Format
The first line contains an integer n.
The next n lines contain an integer element of numbers.
1hr phone interview. Some intro. then mainly on layout experiences. From floorplan, powerplan, placement, CTS, routing, and STA. Explain each stage briefly, what problem did i meet, how to fix them...