【判断题】
磺胺嘧啶和甲氧苄啶均属于磺胺类药物,故二者配伍应用抗菌作用增强
A. 对
B. 错
查看试卷,进入试卷练习
微信扫一扫,开始刷题
答案
B
解析
暂无解析
相关试题
【判断题】
磺胺药的过敏反应,可见皮疹和药热,严重者可发生剥脱性皮炎
A. 对
B. 错
【判断题】
凡用磺胺药均需同服等量碳酸氢钠,以防止发生肾损害
A. 对
B. 错
【判断题】
喹诺酮类药物抗菌机制是通过抑制敏感菌的DNA螺旋酶,干扰细菌的DNA合成而实现的
A. 对
B. 错
【判断题】
异烟肼是最安全有效的抗结核病药
A. 对
B. 错
【判断题】
异烟肼从肾排泄时,可使尿液呈橘红色,应预先告诉病人
A. 对
B. 错
【判断题】
异烟肼与维生素B6合用,目的在于增强前者的抗菌活性
A. 对
B. 错
【判断题】
对氨基水杨酸作用弱于异烟肼,但细菌产生耐药性较异烟肼缓慢
A. 对
B. 错
【单选题】
下列字符序列中,可用作C标识符的一组字符序列是___
A. :S.b,sum,average,_above
B. :class,day,lotus_1,2day
C. :#md,&12x,month,student_n!
D. :D56,r_1_2,name,_st_1
【单选题】
C语言程序从main()函数开始执行,所以这个函数要写在___
A. :程序文件的开始
B. :程序文件的最后
C. :程序文件的任何位置(除别的函数体内)
D. :它所调用的函数的前面
【单选题】
完成C源文件编辑后、到生成执行文件,C语言处理系统必须执行的步骤依次为___
A. :连接、编译
B. :编译、连接
C. :连接、运行
D. :运行
【单选题】
命令行中应包含___
A. :"ctype.h"
B. :"string.h"
C. :"stdio.h"
D. :"math.h"
【单选题】
下面正确的字符常量是 ___
A. :"c"
B. :'\\''
C. :'W'
D. :'ab'
【单选题】
以下不正确的C语言标识符是___
A. :2y
B. :a_1_2
C. :ablexe
D. :_x
【单选题】
在C程序中,1如果用来表示逻辑值时,应代表___
A. :真
B. :假
C. :整数1
D. :长整型数1
【单选题】
以下答案中不是C语言最基本数据类型的是___
A. :逻辑型
B. :整型
C. :字符型
D. :实型
【单选题】
下列格式符中,可以用于以字符形式输出的是___
A. :%d
B. :%f
C. :%c
D. :%1d
【单选题】
关系表达式a≤x<b的正确描述是___
A. :a<=x<b
B. :x>=a&&x<b
C. :x>=a||x<b
D. :!(x<a&&x>=b)
【单选题】
若w=1,x=2,y=3,z=4,条件表达式w<x?w:y<z?y:z的值为___
A. :4
B. :3
C. :2
D. :1
【单选题】
下列关于C语言的叙述,错误的是___
A. :大写字母和小写字母的意义相同
B. :不同类型的变量可以在一个表达式中
C. :在赋值表达式中等号(=)左边的变量和右边的值可以是不同的类型
D. :同一个运算符号在不同的场合可以有不同的含义
【单选题】
执行语句"k=5|3;"后,变量k的当前值是___
A. :1
B. :8
C. :7
D. :2
【单选题】
C语句"x*=y+2;"还可以写作___。
A. :x=x*y+2
B. :x=2+y*x
C. :x=x*(y+2)
D. :x=y+2*x
【单选题】
在C语言中,要求运算数必须是整型的运算符是___。
A. :%
B. :/
C. :+
D. :!
【单选题】
下列___结构不是C程序的结构。
A. :顺序结构
B. :循环结构
C. :程序结构
D. :选择结构
【单选题】
下列关键字中用于构成循环结构的是 ___。
A. :if
B. :while
C. :switch
D. :default
【单选题】
如果程序中想跳出循环体继续往下执行,则执行___语句.
A. :break
B. :continue
C. :switch
D. :return
【单选题】
定义一个4个元素的一维整型数组,___是不正确的.
A. :int a[4]
B. :int a[4]={1,2,3,4,5}
C. :int a[4]={1,2,3}
D. :int a[4]={1}
【单选题】
假定一个二维数组的定义语句为: int a[2][3]={{3,4},{2,8,6}}; 则元素a[0][2]的值为___
A. :4
B. :0
C. :2
D. :6
【单选题】
设有数组定义:char array[ ]="China"; 则数组array所占空间是___
A. :4个字节
B. :5个字节
C. :6个字节
D. :7个字节
【单选题】
定义语句"int (*p)[5];"的含义是___
A. :p是指针变量,指向一个整型数据
B. :p是一个指向一维数组的指针变量
C. :p是一个函数并且这个函数用指针变量做函数参数
D. :p是一个指向函数的指针,该函数的返回值是一个整形
【单选题】
若用数组名作为函数调用的实参,传递给形参的是___
A. :数组的首地址
B. :数组第一个元素的值
C. :数组中全部元素的值
D. :数组元素的个数
【单选题】
源程序要正确地运行,必须要有___
A. :printf函数
B. :自定义的函数
C. :main函数
D. :不需要函数
【单选题】
求某个数的阶乘,以下说法正确的是___
A. :使用自定义函数实现
B. :使用库函数实现
C. :使用jiec函数实现
D. :使用pow函数实现
【单选题】
求字符串的长度,以下说法正确的是___
A. :使用strlen函数
B. :只能使用strlen函数
C. :使用strlength函数
D. :只能使用strlength函数
【单选题】
在C语言中,正确的说法的是___
A. :函数的定义可以嵌套,但函数的调用不可以嵌套
B. :函数的定义不可以嵌套,但函数的调用可以嵌套
C. :函数的定义和函数的调用均不可以嵌套
D. :函数的定义和函数的调用均可以嵌套
【单选题】
在定义任何一个函数时,下列选项中不可缺少的是___
A. :函数名之前的数据类型
B. :函数名之后的一对圆括号
C. :形式参数声明
D. :函数体中的语句
【单选题】
在C语言中,函数的数据类型是指___
A. :函数返回值的数据类型
B. :函数形参的数据类型
C. :调用该函数时的实参的数据类型
D. :任意指定的数据类型
【单选题】
以下函数正确的定义形式___。
A. :double fun(int x,int y)
B. :double fun(int x;int y)
C. :double fun(int x,int y)
D. :double fun(int x, y),
【单选题】
如果在一个函数中的复合语句中定义了一个变量,则该变量___
A. :只在该复合语句中有效
B. :在该函数中有效
C. :在本程序范围内均有效
D. :为非法变量
【单选题】
完成将文件指针fp重新指向文件开头的函数是___
A. :feof(fp)
B. :rewind(fp)
C. :fseek(fp)
D. :ftell(fp)
【单选题】
若文件尚未结束则文件函数feof()的返回值是___
A. :0
B. :1
C. :-1
D. :NULL
推荐试题
【单选题】
It is our___policy that we will achieve unity through peaceful means.
A. consistent
B. continuous
C. considerate
D. continual
【单选题】
The author of the report is well___with the problems in the hospital because he has been working there for many years.
A. informed
B. acquainted
C. enlightened
D. acknowledged
【单选题】
The manager lost his ___ just because his secretary was ten minutes late.
A. mood
B. temper
C. mind
D. passion
【单选题】
Many Europeans___ the continent of Africa in the 19th century.
A. exploded
B. explored
C. exposed
D. expanded
【单选题】
If you hear such a rumor,___ it thoroughly.
A. seek
B. investigate
C. search
D. explore
【单选题】
The pressure ___causes Americans to be energetic, but it also puts them under a constant emotional strain.
A. to compete
B. competing
C. to be competed
D. having competed
【单选题】
Having decided to rent a flat, we ___ contacting all the accommodation agencies in the city.
A. set about
B. set on
C. set out
D. set up
【单选题】
The old couple decided to ___ a boy and a girl though they had three children of their own.
A. adapt
B. adjust
C. adept
D. adopt
【单选题】
Mike was being ___for violent tendencies.
A. contended
B. consulted
C. counselled
D. insulted
【单选题】
I will___ Mr. Walters on this point.
A. refer to
B. commit to
C. contribute to
D. defer to
【单选题】
What happens in the next few days is___to our success.
A. critical
B. critic
C. prior
D. valid
【单选题】
She won’t___that there is a problem.
A. confer
B. concern
C. acknowledge
D. contemplate
【单选题】
This offer is___ for travel before the end of April.
A. effective
B. ineffective
C. invalid
D. valid
【单选题】
___ to British universities depends on examination results.
A. Admittance
B. Entry
C. Admission
D.
E. ntrance
【单选题】
The database is only ___ by authorized managers.
A. proved
B. accessible
C. approved
D. access
【单选题】
This traditional ___ is of indigo blue.
A. clothes
B. diversity
C. costume
D. institution
【单选题】
These cigarettes are a ___ of the best tobaccos.
A. blend
B. band
C. mixture
D. mess
【单选题】
The tennis players need total ___ during play.
A. concentration
B. section
C. depression
D. energy
【单选题】
He ___ that he was innocent.
A. announced
B. declared
C. disclosed
D. admitted
【单选题】
Columbus discovered America but did not ___ the new continent.
A. seek
B. investigate
C. search
D. explore
【单选题】
The trees ___their foliage every year.
A. repeat
B. grow
C. refresh
D. renew
【单选题】
Make a list of the various ___.
A. options
B. choice
C. optional
D. samples
【单选题】
I am well aware that this is a ___ job.
A. rough
B. tough
C. wealthy
D. rogue
【单选题】
I found their kindness quite ___.
A. strong
B. overweening
C. keen
D. overwhelming
【单选题】
The captain wasn’t ___ on having him in the team.
A. eager
B. keen
C. overwhelmed
D. anxious
【单选题】
He was ___at the prospect of seeing them again.
A. thrilling
B. blessed
C. thrilled
D. emotional
【单选题】
They ___ against travelling at night in such a dangerous country.
A. consul
B. advocate
C. counsel
D. recommend
【单选题】
It is absolutely vital that food supplied should be ___.
A. sustained
B. enhanced
C. exhausted
D. maintained
【单选题】
He must have had an accident, or he ___ then.
A. would have been here
B. had to be here
C. should be here
D. would be here
【单选题】
It was essential that the application forms ___ back before the deadline (截止日期).
A. must be sent
B. would be sent
C. be sent
D. were sent
【单选题】
We ___ our breakfast when an old man came to the door.
A. just have had
B. have just had
C. just had
D. had just had
【单选题】
The bridge was named ___ the hero who gave his life for the cause of the people.
A. after
B. with
C. by
D. from
【单选题】
It wasn’t such a good dinner ___ she had promised us.
A. that
B. which
C. as
D. what
【单选题】
The road now ___two kilometers beyond the river.
A. develops
B. extends
C. expands
D. widens
【单选题】
It was claimed that the level of alcohol in the man’s blood was ___ to cause an accident.
A. sufficient
B. adequate
C. enough
D. accurate
【单选题】
Medical care reform has become this country’s most important public health ___.
A. question
B. stuff
C. matter
D. problem
【单选题】
His retail business in the city___ rapidly between the wars.
A. enlarged
B. extended
C. widened
D. expanded
【单选题】
Many frogs ___ the sound of their voice using special sacs(囊) in their throat.
A. amplify
B. widen
C. expand
D. enlarge
【单选题】
Some old people don’t like pop songs because they cannot ___ so much noise.
A. resist
B. sustain
C. tolerate
D. undergo
【单选题】
I have kept that portrait where I can see it every day, as it always ___ me of my university days in London.
A. recollects
B. reminds
C. recalls
D. invokes