Access control lists (ACLs) are used to permit and deny traffic in an IP router.A. True
B. False

Answers

Answer 1
Answer:

Answer:

A. True

Explanation:

  • ACLs are the packet filters of the network. They may restrict, allow or deny traffic necessary for safety.
  • When setting rules for ACLs, all traffic flow depends on the point of view of the router's interface (not other networks).
  • ACL allows you to control the flow of packets for a single or group of IP addresses or for protocols such as TCP, UDP, ICMP and so on.
  • Invalid interface or accidental change of source / destination may adversely affect ACL network

Related Questions

Write a program using integers user_num and x as input, and output user_num divided by x three times.Ex: If the input is:20002Then the output is:1000 500 250Note: In Python 3, integer division discards fractions. Ex: 6 // 4 is 1 (the 0.5 is discarded).LAB ACTIVITY2.29.1: LAB: Divide by x0 / 10main.pyLoad default template...12''' Type your code here. '''
Feature of word processing​
3. If B3=6 and D5=8, what would the following function return? IF(B3>D5, "Closed", D5-B3) *A. "Closed"B. -2C. "Open"D. +2
_ is an important management tool that is used to monitor and manage that contract and/or project
"Packet switches have multiple links attached to them. For each attached link the packet switch has a/an ____________, which stores packets that the router is about to send into that link."link bufferaccess bufferoutput buffertransmission buffernone of the above

Gus is developing new software in an environment in which incremental changes are released at regular intervals within a timebox. Shana is developing software for the minimum viable product stage in order to provide the development team with feedback on how to improve the application. Gus is employing the software methodology known as __________, while Shana is employing the software methodology known as __________.

Answers

Gus is employing the software methodology known as "Agile", where incremental changes are released at regular intervals within a timebox.

Given that;

Gus is developing new software in an environment in which incremental changes are released at regular intervals within a timebox.

Now Gus is employing the software methodology known as "Agile", where incremental changes are released at regular intervals within a timebox.

This approach allows for flexibility and adaptability in response to changing requirements and customer feedback.

Shana, on the other hand, is employing the software methodology known as "Lean Startup", specifically focusing on the minimum viable product (MVP) stage.

The Lean Startup methodology emphasizes rapid iteration and feedback cycles to quickly validate ideas, test assumptions, and gather insights for continuous improvement.

Hence, Both Gus and Shana are using different methodologies that align with their respective goals and stages of software development.

Learn more about the methodology;

brainly.com/question/30261646

#SPJ3

Answer: Agile, Lean

Gus is employing the software methodology known as agile, while Shana is employing the software methodology known as lean.

Many organizations have policies that require users to: a. retain their passwords for a minimum of 30 days. b. include at least three consecutive letters of part of their name in their passwords. c. change their passwords on a regular basis. d. share their passwords with the administrator.

Answers

Answer:

Explanation:

Answer is C. Change their passwords on a regular basis.

PLEASE ANYONE!!which present margins would be best to get the most information to fit on the page​

Answers

Answer:

Normal Margin is fit on the page. The default margins for Microsoft Word is normal margin.                                      

Explanation:

The paper visual effect give the document’s theme and quality. Margins send visual effects. Making a document right helps you to send the right message to readers. Use a small paper and adding a border.

You can change the page layout that people notice first with size, orientation, and margins.

Page margins make your document readable. Margins make the document more readable, make text look inviting, and given reviewers.

With narrower margins, you can reduce more words on-page.

To many words in a line make it difficult to read the document.

Margins are of many types

  • Normal Margin
  • Narrow margins
  • Moderate margins
  • Wide margins

Normal gives an equal inch to all sides of the page.

Narrow margins give little room to each column.

Average margins squeeze words from left and right.

Wide gives space when proofing the manuscript.

Answer:

A.) narrow margins

Explanation:

e2020

Which of the following protocols is used to unsure secure transmissions on port 443?A. HTTPSB. TelnetC. SFTPD. SHTTP

Answers

Answer:

A. HTTPS

Explanation:

Default HTTP port is 80. This means that the server request is received on port 80. But default HTTP request is susceptible to interception. In order to prevent it, HTTP communication is secured using SSL encryption (HTTPS protocol). In this case the Url string begins with 'https://' which differentiates it from normal web request. The default port used for HTTPS service is 443 instead of 80.

Complete the sentence about a presentation delivery method. A(n) ____ allows you to transmit your presentations over the Internet using ____.

1: A. Presentation software
B. webcast
C. external monitor

2: A. Projectors
B. CDs
C. Streaming technology

Answers

A Presentation software allows you to transmit your presentation over the internet using CDs

Answer:

A Presentation software allows you to transmit your presentation over the internet using CDs??????????????????C

Write a JAVA program to sort a given array of integers (1 Dimensional) in ascending order (from smallest to largest). You can either get the array as input or hardcode it inside your program.

Answers

Answer:

import java.util.Arrays;

public class sort{

    public static void main(String []args){

       int[] arr = {2,6,9,1,5,3};

       int n = arr.length;

       Arrays.sort(arr);

       for(int i=0;i<n;i++){

          System.out.println(arr[i]);

       }    

    }

}

Explanation:

first import the library Arrays for using inbuilt functions.

create the main function and define the array with elements.

then, use the inbuilt sort function in java which sort the array in ascending order.

syntax:

Arrays.sort(array_name);

then, use for loop for printing the each sorting element on the screen.