Answer:
A. Detecting network attacks and scans
Explanation:
Honeynet
It is a network , which is set up with the intentional vulnerabilities , in order to invite the attack , in order to determine and study the activities of the attacker .
The Honeynet is composed of one or more honey pots , which are just the computer systems , which act as a bait to trap the people who , tries to hack or penetrate into other's computer system .
Hence ,
The correct option is Detecting network attacks and scans .
Answer:
a)True is the answer......
Answer:
public class num6 {
public static void main(String[] args) {
int n = 4;
for(int i = 1; i <= n; ++i) {
for(int j = 1; j <= i; ++j) {
System.out.print("* ");
}
System.out.println();
}
}
}
Explanation:
This solution is implemented in Java
Two for loops are required for this (an inner nd outer for loop).
The innner and outer for loops can be seen as implementing rows and columns (so on the first 'row' i=1, so a single star is printed, on the second row, i =2, two stars are printed and so on, all on seperate lines)
Possibly true but depends if you can understand their ways
Your answer is d skip to the next line