网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

The following configuration line was added to router R1 Access-list 101 permit ip 10.25.30.00.0.0.255 any What is the effect of this access list configuration?()

  • A、ermit all packet smatching the first three octets of the source address to all destinations
  • B、permit all packet matching the last octet of the destination address and accept all source addresses
  • C、permit all packet matching the host bits in the source address to all destinations
  • D、permit all packet from the third subnet of the network address to all destinations

参考答案

更多 “The following configuration line was added to router R1 Access-list 101 permit ip 10.25.30.00.0.0.255 any What is the effect of this access list configuration?()A、ermit all packet smatching the first three octets of the source address to all destinationsB、permit all packet matching the last octet of the destination address and accept all source addressesC、permit all packet matching the host bits in the source address to all destinationsD、permit all packet from the third subnet of the network address to all destinations” 相关考题
考题 In line 2 (Pare. 2), the word "it" refers to which of the following phrases?A. "the intention" (line 1)B. "the collection" (line 1)C. "one member" (line 1)D. "each flower family" (line 1)

考题 You are creating a Windows Communication Foundation (WCF) service that is implemented as follows.(Line numbers are included for reference only.)01 [ServiceContract]02 [ServiceBehavior(IncludeExceptionDetailsInFaults = true)]03 public class OrderService04 {05 [OperationContract]06 public void SubmitOrder(Order anOrder)07 {08 try09 {10 ...11 }12 catch(DivideByZeroException ex)13 {14 ...15 }16 }17 }You need to ensure that the stack trace details of the exception are not included in the error information sent to the client.What should you do?()A. Replace line 14 with the following line: throw;B. Replace line 14 with the following line: throw new FaultException(anOrder, ex.ToString());C. After line 05, add the following line: [FaultContract(typeof(FaultException))] Replace line 14 with the following line: throw ex;D. Alter line 05, add the following line: [FaultContract(typeof(FaultException))] Replace line 14 with the following line: throw new FaultException(anOrder, Divide by zero exception);

考题 Given the following router output,which configuration file will the router use at its next reload?() A.configB.clientqos.cnfC.startup-configD.running-configuration

考题 Which of the following should an administrator do after running a command from the console onthe perimeter router?() A. Update the configuration logsB. Update the network wiring schematicsC. Update the network configuration proceduresD. Compare the configuration with the baseline

考题 Which of the following can be used to insert a new line below the current line inside a vi session?() A. oB. aC. pD. A

考题 Part of the configuration files for routers testking1 and testking2 are displayed below:If you were to enter the show interface serial 0 command on router testking1,which of the following will be displayed?()A. Serial 0 is down, line protocol is downB. Serial 0 is up, line protocol is upC. Open: IPCP, CDPCPD. LCP closedE. LCP open

考题 The following configuration line was added to router R1 Access-list 101 permit ip 10.25.30.0 0.0.0.255 any What is the effect of this access list configuration?() A. permit all packets matching the first three octets of the source address to all destinationsB. permit all packet matching the last octet of the destination address and accept all source addressesC. permit all packet matching the host bits in the source address to all destinationsD. permit all packet from the third subnet of the network address to all destinations

考题 GSM LINE CHART窗口在TEMS软件中的()菜单栏下面。 A.ControlB.PresentationC.ScanningD.Configuration

考题 Which two functions does Cisco Configuration Assistant provide?()A、wireless connectivityB、call routing configurationC、device discoveryD、call forwardingE、command line configuration

考题 The VLANs in switch R1 are being modified. Which of the following are updated in R1 every time a VLAN is modified?()A、Configuration revision numberB、Configuration revision flag fieldC、Configuration revision reset switchD、Configuration revision databaseE、None of the other alternatives apply

考题 Which of the following is an accurate description of the command copy startup-configftp://kevin:cisco@192.168.1.74?()A、The configuration on the FTP server is copied to RAMB、The command is not valid on a Cisco routerC、The configuration file in RAM is copied to an FTP serverD、The configuration file in NVRAM is copied to an FTP serverE、The configuration on the FTP server is copied to NVRAMF、The configuration will be copied from NVRAM to an FTP server with a filename of Kevin

考题 GSM LINE CHART窗口在TEMS软件中的()菜单栏下面。A、ControlB、PresentationC、ScanningD、Configuration

考题 The following configuration line was added to router R1 Access-list 101 permit ip 10.25.30.0 0.0.0.255 any What is the effect of this access list configuration?()A、permit all packets matching the first three octets of the source address to all destinationsB、permit all packet matching the last octet of the destination address and accept all source addressesC、permit all packet matching the host bits in the source address to all destinationsD、permit all packet from the third subnet of the network address to all destinations

考题 Which two functions does Cisco Configuration Assistant provide?()A、 device DiscoveryB、 call forwardingC、 call routing configurationD、 command line configurationE、 wireless connectivity

考题 Which of the following can be used to insert a new line below the current line inside a vi session?()A、oB、aC、pD、A

考题 Given the following code fragment:     public void create() {     Vector myVect;     myVect = new Vector();      }  Which of the following statements are true?() A、 The declaration on line 2 does not allocate memory space for the variable myVect.B、 The declaration on line 2 allocates memory space for a reference to a Vector object.C、 The statement on line 2 creates an object of class Vector.D、 The statement on line 3 creates an object of class Vector.E、 The statement on line 3 allocates memory space for an object of class Vector.

考题 You work as an application developer at Certkiller .com. Certkiller .com has instructed you to create a class named MetricFormula. This class will be used to compare MetricUnit and EnglishUnit objects.The MetricFormula is currently defined as follows (Line numbers are used for reference purposes only): 1. public class MetricFormula2. { 3. 4. } You need to ensure that the MetricFormula class can be used to compare the required objects. What should you do? ()A、 Add the following code on line 1: : IComparable {B、 Add the following code on line 1: : IComparer {C、 Add the following code on line 3: public int Compare (object x, object y) {// implementation code }D、 Add the following code on line 3: public int CompareTo (object obj) {// implementation code }

考题 You are developing a Windows Communication Foundation (WCF) service to replace an existing ASMX Web service.The WCF service contains the following code segment. (Line numbers are included for reference only.) 01 [ServiceContract( )] 02 03 public interface IEmployeeService 04 { 05 [OperationContract( )] 06 EmployeeInfo GetEmployeeInfo(int employeeID); 07 08 } 09 10 public class EmployeeService : IEmployeeService 11 { 12 13 public EmployeeInfo GetEmployeeInfo(int employeeID) 14 { 15 ... 16 } 17 } 18 19 20 public class EmployeeInfo 21 { 22 ... 23 public int EmployeeID { get; set; } 24 public string FirstName { get; set; } 25 public string LastName { get; set; } 26 27 }The existing Web service returns the EmployeelD as an attribute of the Employeelnfo element in the response XML.You need to ensure that applications can consume the service without code changes in the client. What should you do?()A、Insert the following code at line 02. [DataContractFormat()] Insert the following code at line 22. [DataMember()]B、Insert the following code at line 02. [XmlSerializerFormat()] Insert the following code at line 22. [XmlAtttibute()]C、Insert the following code at line 09. [XmlSerializerFormat()] Insert the following code at line 22. [XmlAttribute()]D、Insert the following code at line 19. [DataContractFormat()] Insert the following code at line 22. [DataMember()]

考题 多选题Which two functions does Cisco Configuration Assistant provide?()Awireless connectivityBcall routing configurationCdevice discoveryDcall forwardingEcommand line configuration

考题 单选题Which of the following can be used to insert a new line below the current line inside a vi session?()A oB aC pD A

考题 单选题The following configuration line was added to router R1 Access-list 101 permit ip 10.25.30.00.0.0.255 any What is the effect of this access list configuration?()A ermit all packets matching the first three octets of the source address to all destinationsB permit all packet matching the last octet of the destination address and accept all source addressesC permit all packet matching the host bits in the source address to all destinationsD permit all packet from the third subnet of the network address to all destinations

考题 单选题You are developing a Windows Communication Foundation (WCF) service that allows customers to update financial data. The client applications call the service in a transaction. The service contract is defined as follows. (Line numbers are included for reference only.) 01 [ServiceContract] 02 public interface IDataUpdate 03 { 04 [OperationContract] 05 [TransactionFlow(TransactionFlowOption.Mandatory)] 06 void Update(string accountNumber, double amount); 07 } 08 09 ... 10 class UpdateService : IDataUpdate 11 { 12 [OperationBehavior(TransactionScopeRequired = true, TransactionAutoComplete = true)]13 public void Update(string accountNumber, double amount) 14 { 15 try 16 { 17 ... 18 } 19 catch(Exception ex) 20 { 21 WriteErrorLog(ex); 22 ... 23 } 24 } 25 } 26Customers report that the transaction completes successfully even if the Update method throws an exception.You need to ensure that the transaction is aborted if the Update method is not successful. What should you do? ()A Insert the following line at line 22: throw;B Insert the following line at line 09: [ServiceBehavior(TransactionAutoCompleteOnSessionClose=false)]C Replace line 12 with the following line: [OperationBehavior(TransactionScopeRequired=true, TransactionAutoComplete= false)]D Insert the following line at line 09.: [ServiceBehavior(TransactionAutoCompleteOnSessionClose=true)]

考题 单选题Which of the following should an administrator do after running a command from the console onthe perimeter router?()A Update the configuration logsB Update the network wiring schematicsC Update the network configuration proceduresD Compare the configuration with the baseline

考题 单选题What is the importance of using Virtual Output Queues on ingress Line Cards in a high-end router?()A Prevents head-of-line blockingB Uses less memoryC Increases forwarding performanceD Simplifies configuration

考题 单选题You are creating a Windows Communication Foundation (WCF) service that is implemented as follows. (Line numbers are included for reference only.) 01 [ServiceContract] 02 [ServiceBehavior(IncludeExceptionDetailsInFaults = true)] 03 public class OrderService 04 { 05 [OperationContract] 06 public void SubmitOrder(Order anOrder) 07 { 08 try 09 { 10 ... 11 } 12 catch(DivideByZeroException ex) 13 { 14 ... 15 } 16 } 17 } You need to ensure that the stack trace details of the exception are not included in the error information sent to the client. What should you do?()A Replace line 14 with the following line: throw;B Replace line 14 with the following line: throw new FaultException(anOrder, ex.ToString());C After line 05, add the following line: [FaultContract(typeof(FaultException))] Replace line 14 with the following line: throw ex;D Alter line 05, add the following line: [FaultContract(typeof(FaultException))] Replace line 14 with the following line: throw new FaultException(anOrder, Divide by zero exception);

考题 多选题Given the following code fragment:     public void create() {     Vector myVect;     myVect = new Vector();      }  Which of the following statements are true?()AThe declaration on line 2 does not allocate memory space for the variable myVect.BThe declaration on line 2 allocates memory space for a reference to a Vector object.CThe statement on line 2 creates an object of class Vector.DThe statement on line 3 creates an object of class Vector.EThe statement on line 3 allocates memory space for an object of class Vector.

考题 单选题Which of the following examples serves the same rhetorical purpose as that served by the pack of gum in line 87?A the apple in line 104B the groundwater in line 93C the climate stability in line 95D the good feeling in line 114E the beautiful sunset in lines 112

考题 多选题Which two functions does Cisco Configuration Assistant provide?()Adevice DiscoveryBcall forwardingCcall routing configurationDcommand line configurationEwireless connectivity