Answer:
A. Network security allows organizations to continue to function.
C. Network security keeps intruders out of the network.
D. Network security prevents personal information from getting into the wrong hands.
Explanation:
Network security is a very important concept in networking. Mitigating cyber attacks like key logging, malicious software attacks, reconnaissance attacks, DOS attacks etc, have saved so many companies from bankruptcy and death.
Security in networks helps to prevent attackers from obtaining user personal information like Bank detail, health history etc.
Answer:
B. Paraphrasing plagiarism
Explanation:
<em> Paraphrasing plagiarism:</em>
This is when the sentences or words of the original source of information is being rephrased or stated in your own words.
The type of plagiarism in the student work is a paraphrasing plagiarism because the information in the original source was rephrased by the student using his own sentences and words to express the information in the original material. Also the referenced author was acknowledge without acknowledging the original author of the material.
The acronym RFID (Radio Frequency Identification) describes
networked devices that contain microcomputers but are not thought of as
computing devices, such as refrigerators, automobile components, light
bulbs, and industrial control devices. RFIDs are battery-powered sensors that gather and transmit data to a reading device. Some sensor based technologies are scanning electron microscopes, LiDAR,radar, GPS, x-ray, sonar, infrared and seismic.
Program p1;
var a,b,c,d : integer; {i presume you give integer numbers for the values of a, b, c }
x1, x2 : real;
begin
write('a='); readln(a);
write('b='); readln(b);
write('c=');readln(c);
d:=b*b - 4*a*c
if a=0 then x1=x2= - c/b
else
if d>0 then begin
x1:=(-b+sqrt(d)) / (2*a);
x2:=(-b - sqrt(d))/(2*a);
end;
else if d=0 then x1=x2= - b /(2*a)
else write ("no specific solution because d<0");
writeln('x1=', x1);
writeln('x2=',x2);
readln;
end.
What kind of question is this?