帧中继网络中PVC是建立在OSI模型()
A.物理层
B.数据链路层
C.网络层
D.运输层
参考答案:B
如图所示的电路中,R为定值电阻,R1为滑动变阻器,当变阻器的滑片P由中点c向b端滑动时,电流表和电压表的示数变化情况是( )
A.电压表的示数变大,电流表的示数变小
B.电压表的示数不变,电流表的示数变大
C.电压表的示数变小,电流表的示数不变
D.电压表的示数不变,电流表的示数变小
下列程序的输出结果是( )。 #include<stdio.h> int fun(int x) { int a; if(x==0‖x==1) return 3; else a=x-fun(x-2) ; return a; } void main() { printf("%d",fun(7) ); }
A.2
B.8
C.9
D.5