Answer:
1.c 2.a
Explanation:
If the new emails she doesn't need could be ignored in spam. the old ones are useless so trash em.
Answer:
prevent outsiders from using its information network.
Explanation:
The firm would use a portal to create a network or intranet for all its information because only employees would have access to it.
Answer:
Literate
Explanation:
A computer literate is a person that is high in knowledge and skill with computers, knowing the device inside and out
Answer:
No ip dns server.
Explanation:
The DNS stands for domain name services. It can be statically or dynamically configured to a workstation from the DHCP request. It resolves the ip address of a server to it's name, so a client is not burdened by memorizing the ip address of every website.
In the cisco ios, the "NO" command is used to negate other commands, so when a "no ip dns server" is used configured on a device, it stops every website name lookups.
Answer:
See Explaination
Explanation:
#include <iostream>
#include <string.h>
using namespace std;
char *mixem(char *s1, char *s2);
int main() {
cout << mixem("abc", "123") << endl;
cout << mixem("def", "456") << endl;
return 0;
}
char *mixem(char *s1, char *s2) {
char *result = new char[1 + strlen(s1) + strlen(s2)];
char *p1 = s1;
char *p2 = s2;
char *p = result;
while (*p1 || *p2) {
if (*p1) {
*p = *p1;
p1++;
p++;
}
if (*p2) {
*p = *p2;
p2++;
p++;
}
}
*p = '\0';
return result;
}