Verilog Module 3

Verilog Module 3

University

8 Qs

quiz-placeholder

Similar activities

DYL10243 TOPIC 4.3 Contribution LH to EESC

DYL10243 TOPIC 4.3 Contribution LH to EESC

University

10 Qs

Research Design-II

Research Design-II

University

10 Qs

Mattia Capezzani Website Design

Mattia Capezzani Website Design

University

10 Qs

Managing Workflows and Conducting Job Analysis

Managing Workflows and Conducting Job Analysis

University

10 Qs

PHOTOSHOP BASIC 2021

PHOTOSHOP BASIC 2021

University

11 Qs

Understanding CSS Box Model and Tables

Understanding CSS Box Model and Tables

11th Grade - University

11 Qs

BASIC TOPIC 2 DESIGN THEORY - design principle

BASIC TOPIC 2 DESIGN THEORY - design principle

University

10 Qs

Adobe XD

Adobe XD

University

11 Qs

Verilog Module 3

Verilog Module 3

Assessment

Quiz

Design

University

Practice Problem

Hard

Created by

Mr.G. Ravi Kumar Reddy undefined

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What function does the following switch-level model realize?

module some_gate (in1, in2, out);

input in1, in2;

output out;

supply1 vplus;

supply0 vgnd;

wire t;

pmos (t, vplus, in1);

pmos (out, t, in2);

nmos (out, vgnd, in1);

nmos (out, vgnd, in2);

endmodule

NAND

Exclusive OR

AND

None of these

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Suppose we are constructing a 16-to-1 multiplexer using cmos switches. In addition to four NOT gates, the number of cmos switches required will be ……

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following statements is/are false?

A tranif0 switch allows bidirectional flow of data between the two end terminals when the control signal is 0.

A tranif0 switch allows bidirectional flow of data between the two end terminals when the control signal is 1.

A tranif1 switch allows bidirectional flow of data between the two end terminals when the control signal is 0.

A tranif1 switch allows bidirectional flow of data between the two end terminals when the control signal is 1.

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following is/are true for user defined primitives in Verilog?

Can be used to specify a combinational circuit with any number of outputs.

Can be used to specify a combinational circuit with a single output.

Can be used to specify a finite state machine with one or two state variables

Can be used to specify a finite state machine with only one state variable.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is/are not true for “generate” blocks?

Multiple copies of code blocks are generated dynamically before simulation or synthesis.

Can be used to instantiate multiple copies of some module.

Must be used along with a variable of type “genvar”.

All of these

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following Verilog module do?

module xor_bitwise (f, a, b);

parameter N = 16;

input [N-1:0] a, b;

output [N-1:0] f;

genvar p;

generate for (p=0; p<N; p=p+1)

begin

xorlp

xor XG(f[p],a[p],b[p]);

end

endgenerate

endmodule

Generates the sum of the two N-bit numbers “a” and “b”, and stores it in “f”

Performs the bitwise XOR of “a” and “b”, and stores it in “f”

Computes whether the number of bits in “a” and “b” are odd

None of these

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code segment generate on synthesis?

always @(posedge clock)

begin

data3 <= din;

data2 <= data3;

data1 <= data2;

data0 <= data1;

end

Four D flip-flops all fed with the data “din”.

A 4-bit shift register.

A 4-bit parallel-in parallel-out register.

None of these.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code segment generate on synthesis, assuming that the four variables data0, data1, data2 and data3 map into four latches / flip-flops? always @(posedge clock)

begin

data3 = din;

data2 = data3;

data1 = data2;

data0 = data1;

end

Four D flip-flops all fed with the data “din”

A 4-bit shift register

A 4-bit parallel-in parallel-out register.

None of these.