Give a circuit to divide frequency of clock cycle by two ?
Answers were Sorted based on User's Feedback
Answer / sravan
take a D Flip Flop. when it is reset output(Q) is zero.
connect the clock which u want to divide to the CP input of
FF. connect Q bar (which is one after the reset)to the D
input of Flip Flop. Take the output from the Q pin of the
Flip Flop, which is divided by two
| Is This Answer Correct ? | 26 Yes | 3 No |
Answer / priyanka kokil
any single flip flop itself is a freqency divider circuit
| Is This Answer Correct ? | 14 Yes | 14 No |
Answer / harikrishna h
take an xor gate, connect output to one of the input of xor gate and other input as the clock. verilog code for the same is given below
module a(input in,rst,output reg ot);
always @(in or rst)
begin
if(rst)
ot<=0;
else
ot<=ot ^ in;
end
endmodule
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / manish sharma
Divide the clock frequency by 2
A 2:1 MUX with CLK as select signal. The 0 select input is just the output. The 1 select input is output_bar(NOT output).
| Is This Answer Correct ? | 1 Yes | 4 No |
On a scale of one to ten, rate me as an interviewer now 26 which stack is used in 8086?
What are the Interrupts available in 8051 microcontroller?
how to know weather the controller is 16 bit or 32 bit?
What is 8051 microcontroller ?
What is the width of address bus?
What are the different types of assemblers used?
Explain transmission gate-based d-latch?
What type of instruction is cpi ‘c’ and define the action it performs?
Name the special purpose registers?
What is stack pointer in 8051 microcontroller?
Can you tell how many pins are there in 8085 Microprocessor?
0 Answers Honeywell, Huawei, Zomato,
What are the main differences between the 8085 and 8086 microprocessor?