A. 1.54 Mbps.
B. 2.0 Gbps.
C. 3.0 Gbps.
D. 480 Mbps.
第1题:
A.IEEE1394
B.USB
C.Serial
D.eSATA
第2题:
运用Excel电子表格进行货币时间价值的有关计算时,求利率或折现率用的函数是()。
A.FV(Rate,Nper,Pmt,PV,Type)
B.PV(Rate, Nper, Pmt, FV, Type)
C.PMT (Rate,Nper,PV,FV,Type)
D.RATE(Nper, Pmt, PV, FV, Type)
第3题:
Transfer 功能可用以转移账目。
第4题:
第5题:
运用Excel电子表格进行货币时间价值的有关计算时,求每期等额现金流量用的函数是()。
A.FV(Rate,Nper,Pmt,PV,Type)
B.PV(Rate, Nper, Pmt, FV, Type)
C.PMT (Rate,Nper,PV,FV,Type)
D.RATE(Nper, Pmt, PV, FV, Type)
第6题:
写出下面代码的运行结果。def addInterest(balance,rate): newBalance=balance*(1+rate) balance=newBalance def main(): amount=1000 rate=0.05 addInterest(amount,rate) print (amount) main()