That's called a router. you can hook up several computers to a router
Answer:
assuming its assembly (otherwise just delete this ans)
Explanation:
MOV TMOD , #01 ;
MOV TLO, #00 ;
MOV THO, #DCH
CPL P1.5
ACALL DELAY
SJMP HERE
;generate delay using Timer 0
DELAY:
SETB TR0
AGAIN:
JNB TF0 ,AGAIN
CLR TR0
CLR TF0
RET
Answer:
can't understand the language
Answer:
x = 29:73;
x_even = x(2:2:end);
Explanation:
In order to create a vector in Matlab you can use colon notation:
x = j:k
where <em>j</em> is 29 and <em>k</em> is 73 in your case:
x = 29:73
Then you can extract the even numbers by extracting the numbers with even index (2,4,6,etc.) of your vector:
x_even = x(2:2:end);
In the line of code above, we define <em>x_even</em> as all the elements of x with even index from index 2 till the end index of your vector, and an increment of 2 in the index: 2,4,6,etc.
If you want the odd numbers, just use the odd indices of your vector:
x_odd = x(1:2:end);
where <em>x_odd</em> contains all the elements of <em>x</em> with odd index from index 1 till the end index, and an increment of 2: 1,3,5,etc.
Answer: Data hazards are the factor behind the damage/problem created in the data of the CPU . There are three types of data hazards which are as follows:-
By considering two element "A" and "B"
- RAW(Read after write)- If the element A tries to read the value before the element B has written it then element A will receive the previous value which is accordingly incorrect .
- WAR(Write after read)-Element B write a value for element A which not read by it.So, it incorrectly gets a new destination assigned.
- WAW(Write after write)-Element B tries to write the value for the element A before element A writes it, thus creating a hazard.