题目内容

运行以下代码将显示什么?

A. TheValueis:Dog
B. TheValueis:Cat
C. TheValueis:Human
D. TheValueis:10

查看答案
更多问题

以下脚本输出什么?

A. 50个随机字符组成的字符串
B. 49个相同字符组成的字符串,因为没有初始化随机数生成器
C. 49个随机字符组成的字符串
D. 什么都没有,因为$array不是数组

考虑如下代码片段:define("STOP_AT", 1024);$result = array();/* 在此处填入代码 */{5$result[] = $idx;}print_r($result);?>标记处填入什么代码才能产生如下数组输出?Array{[0] => 1[1] => 2[2] => 4[3] => 8[4] => 16[5] => 32[6] => 64[7] => 128[8] => 256[9] => 512}

A. foreach($result as $key => $val)
B. while($idx *= 2)
C. for($idx = 1; $idx < STOP_AT; $idx *= 2)
D. for($idx *= 2; STOP_AT >= $idx; $idx = 0)

索引数组的键是______,关联数组的键是______

A. 浮点,字符串
B. 正数,负数
C. 整型,字符串
D. 字符串,布尔值

考虑如下数组,怎样才能从数组$multi_array中找出值cat? "blue", "yellow" => array("apple",9 => "pear","banana", "orange" => array("dog","cat","iguana")));?>

A. $multi_array['yellow']['apple'][0]
B. $multi_array['yellow']['orange']['cat']
C. $multi_array['blue'][0]['orange'][1]
D. $multi_array['yellow']['orange'][1]

答案查题题库