A.DB-15
B.DB-25
C.DIN-6
D.DB-9
第1题:
A.AdapterwithAUIconnector
B.AdapterwithBNCconnector
C.AdapterwithRJ-45connector
D.AdapterwithDB-25connector
第2题:
注册一个自定义组件语句的用法是:( )
A.RegisterComponents(TMyComponent,[‘Standard’])
B.Register(TMyComponent,[‘Standard’])
C.RegisterComponents(‘Standard’,[TMyComponent])
D.Register(‘Standard’,TMyComponent)
第3题:
Factor表示求质因子
第4题:
A.10Base2
B.10Base5
C.10BaseT
D.10BaseF
第5题:
分析下面的函数主要完成什么功能?并给出factor(10)的值。 function f=factor(n) if n<=1 f=1; else f=factor(n-1)*n; end
第6题:
standard是Activity默认的启动模式,在不指定Activity启动模式的情况下,所有Activity使用的都是standard这种模式。