/*Write your code here*/
module bitwise_ops_demo (
input [3:0] A,
input [3:0] B,
output [3:0] AND_OUT,
output [3:0] OR_OUT,
output [3:0] XOR_OUT,
output [3:0] XNOR_OUT
);
// Bitwise AND operation
assign AND_OUT = A & B;
// Bitwise OR operation
assign OR_OUT = A | B;
// Bitwise XOR operation
assign XOR_OUT = A ^ B;
// Bitwise XNOR operation
assign XNOR_OUT = ~(A ^ B); // XNOR is the inverse of XOR
endmodule