Answer:
index.html:
<!DOCTYPE html>
<html>
<head>
<title>Brainly</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table id="myTable">
<caption>Duty Roster for last two days</caption>
<tr><th>Day</th><th>Morning</th><th>Afternoon</th></tr>
<tr><td>Monday</td><td colspan="2">John</td></tr>
<tr><td>Tuesday</td><td rowspan="2">Tom</td><td>Peter</td></tr>
<tr><td>Wednesday</td><td>simon</td></tr>
</table>
</body>
</html>
<u>style.css:</u>
#myTable {
background-color: Cyan;
border-collapse: collapse;
height: 200px;
width: 500px;
font-size: 20px;
}
#myTable td,th {
border: 2px black solid;
text-align: center;
}
#myTable td:first-child, th {
background-color: lightgray;
font-weight: bold;
}
Answer: processing
Explanation:
During the processing steps of the information processing cycle, data is manipulated, calculated, or organized to create useful information.
At this stage, the data that has been gotten will have to be worked on by manipulating it, making necessary calculations in order to get a useful information out of it.
Answer:
This is a failure of prevention model of computer security
Explanation:
Because the firewall was misconfigured so attack prevention mechanism failed to resist the attack and the security of computer is compromised. Prevention is an important model of operational security because <em>protection </em>is possible firstly attacks are prevented from targets and if not prevented and failed then they are detected and finally security department respond to that attack.
protection = <em>prevention </em>if <em>prevention </em>failed than (detection+response)
The words, the computer is the future, has 64 bits.Modern computer has
two types of processors which include:
<h3>Bits</h3>
This is referred to as the smallest unit of data which is used in a computer.
The 32 bit computer are the old types which have a smaller processor and is
relatively slow.
The 64 bit computer on the other hand are the modern types with large
processors and are relatively fast.
Read more about Computer here brainly.com/question/13380788
Answer:
twos complement value is (-2^15 -1) -32768 to 32767.
excess notation value is -32768 to 32767.
unsigned binary value is (2^16) 0 to 65535
Explanation:
Excess notation: used to represent signed integers. Always uses fixed number of bits with leftmost representing the sign.
Twos complement notation: As opposed to excess notation, a sign bit of 0 is used to represent the non-negative (+) sign and a 1 for the negative (-); again, zero is included in the non-negative set.
Unsigned Binary values: are binary values/bits that don't have signs