Set D Ft2 Vlsi 2024 25 Odd Key 1
Set D Ft2 Vlsi 2024 25 Odd Key 1
Will the code work? If not, which line might have an error
(A) Line 1
(B) Line 3
(C) Line 4
(D) The code will work
5 1 3 1 2
Which of the following options are true with respect to the block given above
(A) A1, B1, C1, B1, A0 are inputs and S1 is a wire
(B) A1, B1, C0, B1, A0 are inputs and C1 is a wire
(C) A1, B1, C1, B1, A0 are inputs and S1 is a wire
(D) A1, B1, C1, B1, A0 are inputs and S0 is a wire
Let the VDS of an n-channel MOSFET be a positive voltage and VGS is also positive.
What type of carriers will be induced at the surface of the MOSFET
A) Negative charge carriers
6 1 2 2 2
B) Positive charge carriers
C) No carriers at the surface
D) Surface will be neutral
The MOSFET reaches the threshold voltage when the surface potential is
A) Very high
7 B) Same as the Fermi potential 1 2 2 2
C) Twice the Fermi potential
D) Zero
The non ideality of channel length modulation has the following effect
A) Reduces the threshold voltage
8 B) Increases the threshold voltage 1 2 2 2
C) Causes the drain current to decrease
D) Causes the drain current to increase
A MOS capacitor with P substrate is in accumulation mode. What will be the charges
in the surface of the substrate
A) Positive
9 1 2 2 2
B) Negative
C) Neutral
D)No mobile charge
When VGS> VT, the MOSFET will be operating in
A) Cutoff or Saturation region
10 B) Accumulation or Inversion region 1 2 2 2
C) Cutoff or Linear region
D) Linear or Saturation region
PART B
Section B1: (2 x 4 = 8 Marks) Answer any two questions
Write the primitive for any multiplexer using Verilog
11 4 3 1 2
primitive mux (out, sel, a, b);
output out;
input sel, a, b;
table
//sel a b out
0 1 ? : 1;
0 0 ? : 0;
1 ? 0 : 0;
1 ? 1 : 1;
x 0 0 : 0;
x 1 1 : 1;
endtable
endprimitive
Differentiate between the logical, relational and equality operators with necessary
examples Any 4 differences
12 4 3 1 3
13 4 3 1 3
What are the main electric fields under which the MOSFET operates. Give the
necessary conditions to check whether the MOSFET is operating in linear or active
regions?
14 Main electric fields under which the MOSFET operates-VGS, VDS (1 mark) 4 3 2 2
Necessary conditions (3 marks)
Linear region
VGS > VT
VGS > VGD
VGD > VT
Saturation region
VGS > VT
VGS < VGD
VGD < VT
Which MOS parameter is affected by the sub threshold conduction. Explain in detail
with necessary characteristics
15 4 3 2 2
i) What are the main components of the threshold voltage? Explain each
component in detail.
16 2+2 2 2 2
When the MOSFET reaches the inversion region, the Fermi potential will be
twice.
The threshold voltage is said to be reached when the inversion region is reached
17 6+6 3 1 2
b) Write the Verilog code for a 3 by 8 decoder in the behavioral and dataflow
abstraction
Behavioral-ANY LOOP can be used
module decoder3_to_8( in,out, en);
input [2:0] in;
input en;
output [7:0] out;
reg [7:0] out;
always @( in or en)
begin
if (en)
begin
out=8'd0;
case (in)
3'b000: out[0]=1'b1;
3'b001: out[1]=1'b1;
3'b010: out[2]=1'b1;
3'b011: out[3]=1'b1;
3'b100: out[4]=1'b1;
3'b101: out[5]=1'b1;
3'b110: out[6]=1'b1;
3'b111: out[7]=1'b1;
default: out=8'd0;
endcase
end
else
out=8'd0;
end
endmodule
nmos n1(y,y3,a);
nmos n2(y3,gnd,b);
nmos n3(y,y4,c);
nmos n4(y4,gnd,d);
nmos n5(y,gnd,e);
endmodule
endmodule
Method 2
Explain the non idealities which occur due to the following causes and also explain
their effect on the characteristics with necessary equations
4 marks for each effect
a) Vertical field strength is high- Mobility degradation
18 Let Vertical field strength be high 12 2 2 2
BL Coverage (%)
100
80
100
60 80
40 60
20 40
20
0
0
CO1 CO2 CO3 CO4 CO5 BL-1 BL-2 BL-3 BL-4 BL-5
Evaluation Sheet
Name of the Student: Register No.:
Part- A – Section A1 (3 x 4= 12 Marks)
Q. No CO PO Maximum Marks Total
Marks Obtained
1 CO1 PO2 1
2 CO1 PO2 1
3 CO1 PO2 1
4 CO1 PO2 1
5 CO1 PO2 1
6 CO2 PO3 1
7 CO2 PO3 1
8 CO2 PO3 1
9 CO2 PO3 1
10 CO2 PO3 1
Part- B – Section B1 (2 x 4= 8 Marks)
11 CO1 PO2 4
12 CO1 PO2 4
13 CO1 PO2 4
Part- B – Section B2 (2 x 4= 8 Marks)
14 CO2 PO3 4
15 CO2 PO3 4
16 CO2 PO3 4
Part- C (2 x 12= 24 Marks)
17 a CO1 PO2 12
17 b CO1 PO2 12
18 a CO2 PO3 12
18 b CO2 PO3 12
Consolidated Marks:
PO Maximum Marks
Marks Obtained
CO Maximum Marks 2 25
Marks Obtained 3 25
1 25 Total 50
2 25
Total 50