Question 46
Which of the following is a process of transformation where the old system can no longer be maintained?
Question 47
John works as a C programmer. He develops the following C program:
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int buffer(char *str) {
char buffer1[10];
strcpy(buffer1, str);
return 1;
}
int main(int argc, char *argv[]) {
buffer (argv[1]);
printf("Executed\n");
return 1;
}
His program is vulnerable to a __________ attack.
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int buffer(char *str) {
char buffer1[10];
strcpy(buffer1, str);
return 1;
}
int main(int argc, char *argv[]) {
buffer (argv[1]);
printf("Executed\n");
return 1;
}
His program is vulnerable to a __________ attack.
Question 48
Which of the following policies helps in defining what users can and should do to use network and organization's computer equipment?
Question 49
In Public Key Infrastructure (PKI), which authority is responsible for issuing and verifying the certificates?
Question 50
Which of the following is a centralized collection of honeypots and analysis tools?
