Answer:
A Program was written to carry out some set activities. below is the code program in C++ in the explanation section
Explanation:
Solution
CODE
#include <iostream>
using namespace std;
int main() {
string name; // variables
int number;
cin >> name >> number; // taking user input
while(number != 0)
{
// printing output
cout << "Eating " << number << " " << name << " a day keeps the doctor away." << endl;
// taking user input again
cin >> name >> number;
}
}
Note: Kindly find an attached copy of the compiled program output to this question.
Answer:
Technology refers to methods, systems, and devices which are the result of scientific knowledge being used for practical purposes. Technology is changing fast. They should be allowed to wait for cheaper technologies to be developed.
Answer:
Normally in a DNS server, There are no packet losses•All processing delays are 0 ms
Explanation:
If any packet lost in DNS then lost in the connection information will be displayed in prompt. Once the packet is lost then data is lost. So if the packet is lost then data communications are lost or the receiver will receive data packet in a lost manner, it is useless.
To connect in windows normally it will take 90 ms for re-establish connection it normally delays the time in windows. So that end-user he or she for best performance ping the host or gateway in dos mode so that connection or communication will not be lost. If any packet is dropped DNS will get sent the packet from sender to receiver and the ping rate will more in the network traffics.
Answer:
Head First books
Explanation:
My professor recommended them for basically any language. I ordered one for C off amazon and I love it. It's funny, interesting and educational all at once. Would recommend 10/10.
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