网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

关于叶酸和维生素B12,下列哪项不正确()

  • A、维生素B12不存在于植物中,仅来自动物性食品
  • B、维生素B12的吸收需内因子参与
  • C、叶酸只存于植物性食品中
  • D、维生素B12缺乏致贫血与其作为甲硫氨酸合成酶的辅酶,参与甲硫氨酸合成有关
  • E、维生素B12缺乏致神经病变与其作为L-甲基丙二酰PCoA变位酶的辅酶有关

参考答案

更多 “ 关于叶酸和维生素B12,下列哪项不正确()A、维生素B12不存在于植物中,仅来自动物性食品B、维生素B12的吸收需内因子参与C、叶酸只存于植物性食品中D、维生素B12缺乏致贫血与其作为甲硫氨酸合成酶的辅酶,参与甲硫氨酸合成有关E、维生素B12缺乏致神经病变与其作为L-甲基丙二酰PCoA变位酶的辅酶有关” 相关考题
考题 设在工程中定义了下列类型: Type Stutype ino As Integer strname As String*20 Strsex As String*1 Smark As Single End Type在窗体上正确使用这个类型的是下列哪个操作 A. Sub Command1_Click() Dim student As Stutype With student .ino=12 .strname=smith .strsex=男 .smark=89 End With End Sub B. Sub Command1_Click() Dim student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With End Sub C. Sub Command1_Click() Dim student As Stutype With Stutype .ino=12 .strname="smith" .strsex="男" .smark=89 End With End Sub D. Sub Command1_Click() Dim student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End student End Sub

考题 下列关于Sub过程的叙述正确的是A.一个Sub过程必须有一个Exie Sub语句B.一个Sub过程必须有一个Enb Sub语句C.在Sub过程中可以定义一个Function过程D.可以用Goto语句退出Sub过程

考题 (12)有下列Sub过程: Sub Sub(x As Single,y As Single) t=x x=t/y y=t Mody End Sub 在窗体上的命令按钮Commandl中,编写下列事件过程,执行该事件过程调用Sun过程,结果是( )。 Private Sub Commandl_Click() Dim a As Single Dim b As Single a=5 b=4 Sun a,b Print a;b End Sub A.1.25 1 B.5 4 C.4 5 D.1 1.25

考题 以下程序的运行结果是sub(int x,int y,int *z){*z=y-x;}main(){ int a,b,c;sub(10,5,a);sub(7,a,b);sub(a,b,c);printf("M,M,M\n",a,b,c);}A.5,2,3B.-5,-12,-7C.-5,-12,-17D.5,-2,-7

考题 关于Function过程与Sub过程两者的异同,下列叙述错误的是( )。 A、Function过程与Sub过程都必须有形参B、Function过程与Sub过程都有各自的变量声明和各自的过程体C、Function过程结果要返回一个函数值,Sub过程可以没有数值返回D、Function过程定义中必须为过程名赋值,而Sub过程不能为过程名赋值

考题 执行下列程序,输入框中显示的默认字符串为【 】;Pirate Sub Command 1_Click()InputBox"ok","输入参数",Format("H12")End Sub;

考题 在窗体上画两个标签和一个命令按钮,其名称分别为Label1、Label2和Command1,然后编写下列程序: Private Sub rune(L AS Labe1) Caption="1234" End Sub Private Sub Form. Load( ) Labe11.Caption="ABCDE" Labe12.Caption=10 End Sub Private Sub Command1Click( ) a=Va1(Label2.Caption) Call func(Label1) Label2.Caption a End Sub 程序运行后,单击命令按钮,则在两个标签中显示的内容分别为( )。A.ABCD和10B.1234和100C.ABCD和100D.1234和10

考题 单击命令按钮时,下列程序代码的执行结果为 Public Sub proc1(n As Integer,Byva1 m As Integer) n=n Mod 10 m=m Mod 10 End Sub Private Sub Cmmand1_Click( ) Dim x As Integer,y As lngeger x=12:y=12 Call Proe1(x,y) Print x;y End SubA.12 2B.2 12C.2 2D.12 12

考题 在窗体上画两个标签和一个命令按钮,其名称分别为Labe11、Labe12和Command1,然后编写如下程序: Private SUb fune(L As Label,By Val a As Integer) L.Caption="1234" a=a*a End Sub Private Sub Form. Load() LabeCaptlon="ABCD" LabeCapfion=10 End Sub Private SUb Command1_Click() a=Val(Label2.Caption) Callfunc(Labell,A)LabeCaption=a End Sub 程序运行后,单击命令按钮,在两个标签Labe11和Labe12中显示的内容分别是______。A.ABCD和10B.1234和100C.ABCD和100D.1234和10

考题 下列Sub 过程中描述错误的是______。A.Sub 过程只能在窗体模块中定义B.Goto 语句不能用于Sub 过程C.Sub 过程只能在窗体模块中定义D.Sub 过程中不能嵌套定义Sub 过程

考题 设在工程中定义了下列类型:Type Stutypeino As Integerstrname As String*20strsex As String*1smark As SingleEnd Type在窗体上正确使用这个类型的是下列哪个操作( )。A.Sub Command1_Click() Dim student As Stutype With student .ino=12 .Strname=smith .strsex=男 .smark=89 End With End SubB.Sub Command1_Click() Dim Student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With End SubC.Sub Comnland1_Click() Dim student As Stutype With Stutype .ino=12 .strname="smith" .strsex="男" .smark=89 End With End SubD.Sub Command1_Click() Dim student As Stutype With student .ino=12 .Strname="smith" .strsex="男" .smark=89 End student End Sub

考题 下列检查结果哪项最符合该患者目前的病情变化( )A.PaCOSUB2/SUB降低B.PaOSUB2/SUB降低;PaCOSUB2/SUB升高C.PaOSUB2/SUB降低;PaCOSUB2/SUB降低D.肺活量正常,残气量增加E.FEVI减低,残气量正常

考题 单击命令按钮时,下列程序代码的执行结果为 Public Sub Procl(n As Integer,ByVal m As integer) n=n Mod 10 m=m\10 End sub Private Sub Commandl_Click() Dim x AS Integer,y AS Integer x=12:y=24 Call Procl(x,y) Print x;y End subA.12 24B.2 24C.2 3D.12 2

考题 下列程序的执行结果为 Private Sub Comrnandl_Click( ) Dim p As Integer, q As Integer p=12:q=20 Call Value(p, q) Print p; q End Sub Private Sub Value(ByVal m As Integer, ByVal n As Integer) m=m * 2: n=n - 5 Print m; n End SubA.20 12 20 15B.12 20 12 25C.24 15 12 20D.24 12 12 15

考题 单击命名按钮时,下列程序代码的执行结果为 Public Sub procl ( n As Integer, Byval m As Integer) n=n Mod 10 m=m Mod 10 End Sub Private Sub Cmmand1 Click() Dim x As Integer, y As Integer x=12:y=12 Call Procl (x, y) Print x;y End SubA.12 2B.2 12C.2 2D.12 12

考题 执行下面的一段C程序后,输出结果变量应为______。 sub (int x, int y, int *z) { *z=y-x; } main() { int a, b, c; sub (10, 5, sub(7, a, sub(a, b, printf ("%d, %d, %d\n", a, b, c); }A. 5, 2, 3 B. -5, -12, -7 C. -5, -12, -17 D. 5, -2, -7

考题 关于VBScript的过程,下列叙述正确的是()A、Sub过程和Function过程均无返回值B、Sub过程有返回值,Function过程无返回值C、Sub过程无返回值,Function过程有返回值D、Sub过程和Function过程均有返回值

考题 1. class Super {  2. private int a;  3. protected Super(int a) { this.a = a; }  4. }  .....  11. class Sub extends Super {  12. public Sub(int a) { super(a); }  13. public Sub() { this.a= 5; }  14. }  Which two, independently, will allow Sub to compile?()A、 Change line 2 to: public int a;B、 Change line 2 to: protected int a;C、 Change line 13 to: public Sub() { this(5); }D、 Change line 13 to: public Sub() { super(5); }E、 Change line 13 to: public Sub() { super(a); }

考题 关于VBScript过程,下列说法错误的是()。A、Function函数有返回值B、call语句用于Sub或Function过程的调用C、调用Sub过程时call语句可以省略,但是调用Function过程时不可以省略D、使用Exit Sub语句可以从Sub过程中立即退出

考题 单选题下列表示测量不确定度的符号中,正确表示相对扩展不确定度的是( )。A pUsubrel /sub /pB pusubrel /sub /pC pUsubp /sub /pD pusubref/sub /p

考题 单选题给定下列FORTRAN子程序如下:   SUBROUTINE SUB(K,A)   A=SQRT(K*K+1.0)   END   下列调用语句中正确的是()A  CALL SUB(N,N)B  CALL SUB(X,X)C  CALL SUB(N,X*X)D  CALL SUB(11,X)

考题 单选题下列测量不确定度符号中,表示合成标准不确定度的是( )。A pUsub95rel/sub/pB pUsubc/sub/pC pusubc/sub/pD pUsubrel/sub/p

考题 单选题治疗恶性贫血时,宜选用A p口服维生素Bsub12/sub/pB p肌注维生素Bsub12/sub/pC 口服硫酸亚铁D 肌注右旋糖酐铁E 肌注叶酸

考题 单选题正态分布时,算术平均数、中位数、众数的关系为()A msub0/sub<msube/sub<(xB msub0/sub=msube/sub=(xC msub0/sub>msube/sub>(xD msube/sub<msub0/sub<(x

考题 多选题1. class Super {  2. private int a;  3. protected Super(int a) { this.a = a; }  4. }  .....  11. class Sub extends Super {  12. public Sub(int a) { super(a); }  13. public Sub() { this.a= 5; }  14. }  Which two, independently, will allow Sub to compile?()AChange line 2 to: public int a;BChange line 2 to: protected int a;CChange line 13 to: public Sub() { this(5); }DChange line 13 to: public Sub() { super(5); }EChange line 13 to: public Sub() { super(a); }

考题 多选题下列表示中____的表示形式是正确的。ApUsub95/sub= 1%,vsubeff/sub =9 /pBpUsubr/sub= 1%,k=2 /pCpusubC/sub=0. 5% /pDpusubC/sub=±0 5%.k=1 /p

考题 单选题下列关于矿井有害气体最高允许浓度说法中,不正确的是()。A CO最高允许浓度为0.0024%B pNOsub2/sub最高允许浓度为0.00025% /pC pSOsub2/sub最高允许浓度为0.0005% /pD pNHsub3/sub最高允许浓度为0. 00066% /p

考题 单选题应用华法林抗凝过程中,出现严重出血时,可应用急救的药物的是( )。A p维生素Ksub1/sub/pB p维生素Ksub3/sub/pC p维生素Ksub4/sub/pD p维生素Bsub1/sub/pE p维生素Bsub12/sub/p