Answer:
Hypertext
Explanation:
Based on the information provided within the question it can be said that the term that is being described is called Hypertext. This is an integrated software function that is found in many operating systems which allows the user to link different text and documents together for immediate access when the documents are logically related to one another.
Answer:
advantages
- detect anomalies
- information for new security rules
disadvantages
- false alarms
Explanation:
Advantages
- With an IDS we can check and track every attack or detect anomalies even when you don't know about these behaviors.
- When an IDS detects anomalies, the system generates information about these behaviors and you can create new rules for these attacks.
Disadvantages
- When we use an IDS, we could receive false alarms because we cannot predict every behavior.
Answer:
I am writing a Python program:
def Eratosthenes(n):
primeNo = [True for i in range(n+1)] # this is a boolean array
p = 2 # the first prime number is initialized as 2
while (p * p <= n): # enumerates all multiples of p
if (primeNo[p] == True):
for i in range(p * p, n+1, p): #update multiples
primeNo[i] = False
p = p + 1
for p in range(2, n): #display all the prime numbers
if primeNo[p]:
print(p),
def main(): #to take value of n from user and display prime numbers #less than or equal to n by calling Eratosthenes method
n= int(input("Enter an integer n: "))
print("The prime numbers less than or equal to",n, "are: ")
Eratosthenes(n)
main()
Explanation:
The program contains a Boolean type array primeNo that is initialized by True which means that any value i in prime array will be true if i is a prime otherwise it will be false. The while loop keeps enumerating all multiples of p starting from 2, and striking them off from the original array list and for loops keep updating the multiples. This process will continue till the p is greater than n. The last for loop displays all the prime numbers less than or equal to n which is input by user. main() function prompts user to enter the value of integer n and then calls Eratosthenes() function to print all the prime numbers less than or equal to a given integer n.
Configure terminal because Commands in this mode are written to the running configuration file as soon as you enter them (using the Enter key/Carriage Return). After you enter the configure terminal command, the system prompt changes from switch# to switch(config)#, indicating that the switch is in configuration mode.
Answer:
Option (d) Software firewall is placed between the normal application and the networking components of the operating system
Explanation:
- Software Firewalls protect the computer from trojans and malicious content which can arise from unsafe applications.
- It also protect the computer from external network.
- It filters the data to and from a software application in the desktop.
- It also filters the data to and from a network.
- It safeguards the computer from not loosing access to the attackers.
- It is customizable software and has to be monitored like installing updates and storage spaces etc.
- Software Firewall in conjunction with the Hardware Firewall must be used for the security of the desktop and the networks.