技术部经理要求你在路由器上做以下权限控制:允许所有的TCP服务除了FTP以外。你的配置如下: access-list 101 permit tcp any any ; access-list 101 deny tcp any any eq 20; access-list 101 deny tcp any any eq 21, 并应用在路由器出口上。请问根据以上配置叙述正确的是()。
A. 禁止内网向外网进行FTP
B. 允许所有的TCP服务
C. 允许所有的UDP服务
D. 允许内网用户上Internet浏览网页。
查看答案
SCJP:In which two cases does the compiler supply a default constructor for class A? (Choose two.)
A. class A {}
B. class A { public A() { } }
C. class A { public A(int x) { } }
D. class A{ void A(){ } }
SCJP: Which two allow the class Thing to be instantiated using new Thing()? (Choose two.)
A. public class Thing { }
B. class Thing { public Thing(){ } }
C. public class Thing{ public Thing(void){ } }
D. public class Thing{ public Thing(String s){ } }
E. public class Thing{ public void Thing(){ } public Thing(String s){ } }
用 修饰的类叫抽象类。抽象类只能被继承,不能被实例化。用 修饰的类叫最终类,只能被实例化,不能被继承。