β
Correct Answer: (B)
if (clk’event and clk = ‘1’)
Explanation: the correct way to identify the positive edge of the clock signal is shown in option b. the ‘event attribute will detect the event and clk = ‘1’ will check whether its high on clock or not. in this way the positive edge is monitored. we need to use and operator because both of the conditions should be true.
Explanation by: Mr. Dubey
the correct way to identify the positive edge of the clock signal is shown in option b. the ‘event attribute will detect the event and clk = ‘1’ will check whether its high on clock or not. in this way the positive edge is monitored. we need to use and operator because both of the conditions should be true.
Discussion
Question Analytics
358
Total Visits
3 y ago
Published
Mr. Dubey
Publisher
97%
Success Rate