Answer:
C. A cold site is a leased facility that contains only electrical and communications wiring, air conditioning, plumbing, and raised flooring. No communications equipment, networking hardware, or computers are installed at a cold site until it is necessary to bring the site to full operation.
Explanation:
To convert binary fraction to decimal fraction, we first write the given
.1011 (base 2)
The process of conversion is to break down to its decimal constituent,
.1011 (base 2) = (1*2^-1)+(0*2^-2)+(1*2^-3)+(1*2^-4)
.1011 (base 2) = 0.5 + 0 + 0.125 + 0.0625
.1011 (base 2) = 0.6875 (base 10)
<em>ANSWER: 0.6875 (base 10)</em>
Given 1234
i=1
user num=4#assume positive
while (user-num>=i);
print(i)
i+=1
#include <iostream>
using namespace std;
int main()
{int userNum=0;
int i=0;
userNum=4; ##assume positive
i=1;
while (i <=userNum){
cout<<i>>" ";
i=i+1;
cout <<endl;
return0;
}
Answer:
Cyber crime is also known as computer crime in which the illegal activities are done by the computer and many mobile devices. There are many types of crime but the cyber crime are associated with the computer crime by hacking personal documents and email spamming.
To resolve these type of cyber crime there is special type of police which is known as cyber cell. Data theft, cyber stalking and accessing other user data without there permission is all comes under the cyber crime.
Computer forensics is type of application that are used in investigation purpose and gathering the information from the computer.
The main aim of computer forensic is to perform and maintain the various type structured investigation and also maintain the systematic documents for the evidence.
Answer:
dog
Explanation:
Given the code :
>>> A = [21, 'dog', 'red']
>>> B = [35, 'cat', 'blue')
>>> C = [12, 'fish', 'green']
>>> E = [A, B, C]
the value of E[0][1]
Here, square boxes is used to select the value at E[0] ; the output is then used to select the value at index 1 of E[0] output.
Note that, indexing starts at 0; hence first list element is 0, then, 1, 2, and so on.
At
E[0] ; list E, index 0 (first element in the list) , gives an output A
Then, A[1] ; list A, index 1 (second element in the list) gives 'dog'