Answer: Vulnerability of
Explanation:
The network administrator was able to identify that virus before it led to denial of service to users. Since it has been discovered, it is no longer a threat as measures will be taken to eliminate it. But a virus that was successful uploaded shows how vulnerable the system is or how bad the security protections put in place are. Steps has to be taken to ensure it does not reoccur.
Answer:

Explanation:
Given
Power at point A = 100W
Power at point B = 90W
Required
Determine the attenuation in decibels
Attenuation is calculated using the following formula

Where
t and
t


Substitute these values in the given formula




<em>(Approximated)</em>
Answer:
The solution code is written in Python 3 as below:
- outfile = open("greeting.txt", "w")
- outfile.write("Hello World")
- outfile.close()
Explanation:
To create a simple text file in Python, we can use Python built-in function, <em>open()</em>. There are two parameters needed for the open() function,
- the file name and
- a single keyword "w". "w" denote "write". This keyword will tell our program to create a file if the file doesn't exist.
The statement <em>open("greeting.txt", "w")</em> will create a text file named "<em>greeting.txt</em>" (Line 1)
To fill up the content in the greeting.txt, we use <em>write()</em> method. Just include the content string as the argument of the <em>write()</em> method. (Line 2)
At last, we use <em>close() </em>method to close the opened file,<em> outfile</em>. This will release the system resource from the<em> outfile.</em>
<span>Frames have more information in them than bits.
</span>
<span>Frames are made up of bits but not vice versa.
A bit (BInary digiT) is the basic unit of digital. It can be 0 (logical false, off) or 1 (not logical false - true, on). Four bits are in a nybble, which can have a value of 0 - 15, eight bits are in a byte which can have a value of 0 - 255. Words vary in size, they consist of multiple bytes and are generally correlated with the system's data bus/processor data width (a 64 bit system has an 8 byte word).
</span>
The question is incomplete:
Darius needs to include contact information in an email that he is sending to a colleague . Which option should he choose from the ribbon?
-Attach File
-Attach Item
-Attach Policy
-Attach Signature
Answer:
-Attach Signature
Explanation:
-Attach file is an option that allows you to include any type of file that you need to send in the email.
-Attach Item is an option that allows you to include an element from your email like a message in your inbox to the current one you are writing.
-Attach Policy is not an option.
-Attach Signature is an option that allows you to include a previously created signature with the contact information at the end of the message.
According to this, the answer is that the option that Darius should choose from the ribbon is attach signature because he needs to include contact information.