天然药物研究对象有效成是指()
天然药物研究对象有效成是指()
A.提取物中一类或几类化学成分
B.含量高的成分
C.具有某种生物活性的成分或具有临床疗效。
D.无副作用的成分
正确答案:具有某种生物活性的成分或具有临床疗效。
- 1.因为Score1数组、Score2数组和Score3数组的大小相同,并且相应元素包含相关数据,所以它们叫做平行(parallel)数组。Because Score1, Score2 and Score3 are of the same size and the corresponding elements contain relevant data, they are called parallel arrays.
- 2.在用冒泡排序对数5、30、25、15进行升序排序的过程中,进行了3次交换。In the bubble sort ascending order of number 5, 30, 25 and 15, three exchanges were made.
- 3.如果知道100个元素被分配到二维数组A中,则A的两个下标都必须是从0到9,即A必须是10行和10列。If you know that 100 elements are assigned to a two-dimensional array A, the two subscripts of A must be from 0 to 9, that is, A must be 10 rows and 10 columns.
- 4.一维数组和二维数组必须在同一个语句中声明。One-dimensional arrays and two-dimensional arrays must be declared in the same statement.
- 5.如下声明的数组Character,它表示的字符串长度为10:Declare Chr[10] As CharacterThe array Character declared below represents a string length of 10:Declare Chr [10] As Character
- 6.在使用二分查找法之前要求数据已经排好序。Before using the binary search method, the data should be ordered.
- 7.二分查找法只能用于数值型数据。Binary search method can only be used for numerical data.
- 8.冒泡排序方法不能用来把数值数据按照降序排序。 Bubble sorting cannot be used to sort numeric data in descending order.
- 9.在两个平行数组中,所有对应的元素都必须数据类型相同。In both parallel arrays, all corresponding elements must have the same data type.
- 10.下面的语句:Declare Array1[10], Array2[20] As Integer为200个变量分配了空间。The following statement:Declare Array 1 [10], Array 2 [20] As IntegerStorage space was allocated for 200 variables.