What Cisco IOS command is used to display the current administrative and operational trunking modes of an interface?

A) show interfaces trunk
B) show trunk
C) show trunk switchport
D) show interfaces interface switchport

D
Explanation: D) The Cisco IOS show interfaces interface switchport command is used to display switchport information about a specific interface, including the administrative and operational trunking modes.

Computer Science & Information Technology

You might also like to view...

Which of the following are the classes in JavaFX for representing an event?

a. ActionEvent b. MouseEvent c. KeyEvent d. WindowEvent

Computer Science & Information Technology

Fill in the code below in the underline:

``` public class Test { public static void main(String[] args) { Test test = new Test(); System.out.println(test.setAction3(_____________)); } public double setAction3(T3 t) { return t.m(5.5); } } interface T3 { public double m(Double d); } ``` a. () -> e * 2 b. (e) -> e * 2 c. e -> e * 2 d. (e) -> {e * 2;}

Computer Science & Information Technology