Answer:
profiles
Explanation:
<h2><u>Fill in the blanks </u></h2>
Anomaly detection systems make use of <u> profiles</u> that describe the services and resources each authorized user or group normally accesses on the network.
The result of sending the string above into a variable that has allocated space for 8 bytes is that there will be Buffer Overflow Attacks.
<h3>What occurs when a string of data sent to buffer is large?</h3>
A buffer overflow is also known as buffer overrun. This is known to be a process that occurs when or if the size of data is known to be more than the storage capacity of any kind of memory buffer.
Note that due to the overload, the program that is trying to write the data to the buffer will therefore overwrites to the adjacent memory locations.
Learn more about string from
brainly.com/question/26427527
b check your blind spots frequently i guess not sure
To screw with your teacher:
first = (name1 > name2 ) ? name1 : name2;
That code is correct, but your teacher is probably looking for:
if( name1 > name2 )
first = name1;
else
first = name2;
I love the ternary operator!
Answer:
9
Explanation:
lets do calculations with ONLY the rightmost digits, ie., 7 + 6 = 4, so we're ignoring the carry.
Then, following must be true as well:
7+5 = 3
7+4 = 2
7+3 = 1
7+2 = 0 <= this reveals our base 9
7+1 = 8
7+0 = 7