Answer: KEEPING INVENTORY AS LOW AS POSSIBLE
Explanation: YOU GOTTA KEEP INVENTORY LOW
Touch Screen, it provides both visual output and touch input.
Answer:
Having a proper firewall that could prevent cyber attacks against black hat hackers, And having good cyber team that has had extensive training and know hows the network operates to ensure smooth sailing for the workers and students. (extra) Ensuring your staff understands the cyber war and knows not to click on malicious links that could allow a cyber crminal in to the network.
Explanation:
BlackHat- Individual that uses his knowlage of computers for malicious use.
Firewall- Enitial intrance into a computer it is a piece of software that have expressions to ensure you are only getting traffic that you have specified on the system and not allowing all traffic on all ports
Answer:
// Code your design here
module clk_div
#(
parameter WIDTH = 7,// width of register
parameter N = 100// value of division here 100
)
(clk,reset, clk_out);
input clk;
input reset;
output clk_out;
reg [WIDTH-1:0] r_reg;// counting register
wire [WIDTH-1:0] r_nxt;
reg clk_track;// clock value
always at(posedge clk or posedge reset)
begin
if (reset)// reset
begin
r_reg <= 0;
clk_track <= 1'b0;
end
else if (r_nxt == N)
begin
r_reg <= 0;
clk_track <= ~clk_track;
end
else
r_reg <= r_nxt;
end
assign r_nxt = r_reg+1;
assign clk_out = clk_track;
endmodule
testbench:
// Code your testbench here
// or browse Examples
module clkdiv2n_tb;
reg clk,reset;
wire clk_out;
clk_div t1(clk,reset,clk_out);
initial
clk= 1'b0;
always
#5 clk=~clk;
initial
begin
#5 reset=1'b1;
#10 reset=1'b0;
#5000 $finish;
end
initial
$monitor("clk=%b,reset=%b,clk_out=%b",clk,reset,clk_out);
initial
begin
$dumpfile("dump.vcd");
$dumpvars(2);
end
endmodule
Explanation:
see waveform
Its nothing u need to have protection or u will get hacked or worse.