Functional Coverage - Part2

Functional Coverage - Part2

1st Grade

8 Qs

quiz-placeholder

Similar activities

Flash Memory

Flash Memory

1st - 3rd Grade

10 Qs

Soal VLAN dan Trunk

Soal VLAN dan Trunk

1st Grade

10 Qs

informatyka Chemik

informatyka Chemik

KG - Professional Development

10 Qs

Routing Protocol

Routing Protocol

1st - 5th Grade

10 Qs

Sieci komputerowe

Sieci komputerowe

1st - 5th Grade

10 Qs

Direccionamiento IP

Direccionamiento IP

KG - 3rd Grade

10 Qs

BTEC DIT: Revision 1-6

BTEC DIT: Revision 1-6

1st - 12th Grade

11 Qs

Computer

Computer

1st Grade

10 Qs

Functional Coverage - Part2

Functional Coverage - Part2

Assessment

Quiz

Computers

1st Grade

Hard

Created by

naser naeem

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

You define:

During simulation, pkt_type only takes values 0, 2, and 4.
What is the coverage percentage?

100% — all bins got hit at least once.

66.66% — one bin (data) is incomplete.

33.33% — only one bin hit counts.

Depends on how generous your simulator is feeling.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

This means:

All (a=3, b=anything) combinations are ignored.

Only (a=3, b=7) is ignored.

All (b=7, a=anything) combinations are ignored.

The cross is skipped entirely.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

option.at_least = 3;

for a bin. The bin is hit twice in simulation.
Coverage result:

100% — it was hit at least once.

66% — partial credit given.

0% — didn’t meet the minimum hits required.

Depends on per_instance.

Answer explanation

💡 The bin is considered uncovered until it reaches the at_least threshold.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

The signal addr is 16 bits wide. What happens?

Simulator automatically truncates to 8 bits.

Tool creates bins for values 0–255 and ignores higher ones.

Compilation error due to mismatch.

Bins cover 0–255, but values >255 go into the default bin.

Answer explanation

💡 Values outside the specified range are ignored unless a default bin is defined.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

You run a test where cg_inst1 hits all bins, cg_inst2 hits none.
If per_instance = 0, coverage is:

50%

100%

0%

Undefined

Answer explanation

💡 Coverage is merged across instances, so one fully-covered instance makes total coverage look perfect.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

How many cross bins will be created?

2

3

4

8

Answer explanation

2 bins for i × 2 bins for j = 4 cross bins.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the coverage if the Hit seen : 10 , 12 ?

33%

66%

100%

90%

Answer explanation

Three bins {10}, {11}, {12}. Only 10 and 12 are hit → 2/3 bins covered = 66%.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

How many bins will the cross have?

1

2

4

1 + auto bins

Answer explanation

One named bin (low_a_lo_b) plus the simulator may auto-generate the others unless iff or illegal_bins are used to remove them.