Company: nvidia_22sep
Difficulty: medium
Consider a chip design with the following parameters: Average activity factor = 0.4, Average switching capacitance = 100 pF/mm², VDD = 2 V, Logic frequency of operation = 3 GHz, and Area of chip = 50 mm². Calculate the dynamic power consumed by the chip in Watts. 12 Watts 24 Watts 48 Watts 60 Watts Consider the following program where SWAP interchanges variable values. Given initial values a = 10, b = 25, and c = 16, what is the final value of 'res'? INTEGER a, b, c; INTEGER res = 0; while (b > 0) { res += (a % c) + (c % a); b -= a % c; SWAP(a, c); } 24 36 48 52 Consider a circuit of identical NMOS transistors with VTH = 0.25 V and VDD = 1.5 V. If the gate of the third transistor (T3) is at 1.4 V, calculate the voltages at nodes N1, N2, and N3 (represented as N1, N2, N3). 1.25, 1.00, 0.75 0.80, 0.09, 0.00 1.50, 1.25, 1.00 0.75, 0.50, 0.25 Given an array A = [60, 80, 60, 70, 60, 75, 85] and n = 7, what is the output of the printSpans function which calculates the number of consecutiv