【简答题】神经网络从1994年12月开始,在BurnHarbor的热镀锌线上成功地在线运行。1995年1月对生产数据的统计表明:与传统回归模型相比,镀层重量信号的传送长度平均误差和标准偏差分别减少了()%和()%
【单选题】以下程序运行完后,str2中保存的值是 str1="\nI learned to ride a bycicle three times last month " str2=str1.lstrip() str2=str2.rstrip()
A.
"I learned to ride a bycicle three times last month"
B.
"I learned to ride a bycicle three times last month "
C.
"I learned to ride a bycicle three times last month "
D.
"\nI learned to ride a bycicle three times last month "
【简答题】二极管导通后两端电压降基本保持 ( 不变 / 变大 ) ,硅二极管约为 V 。锗二极管约为 V 。
【简答题】二极管正向导通后,二极管两端的电压基本保持不变,其中锗管约为____,锗管约为____,则成为二极管的“正向压降”。
【单选题】19世纪30年代创立的细胞学说的最主要的意义是 [ ]
【单选题】下列说法正确的是 [ ]
A.
生物体的结构功能单位是细胞,病毒不具有细胞结构,所以不是生物体
【单选题】以下程序运行完后s的值是: ( ) main() { int n ; float s=1.0; for(n=10;n>1;n--) s=s+1/n; printf("%6.1f\n",s); }