黄老师 发表于 2023-1-21 08:30:00

北语网院23年1月《PHP》作业_1_100分

22秋《PHP》作业_1
1.[单选题]index.php脚本如何访问表单元素email的值?( )
    A.$_GET[‘email’]
    B.$_POST[‘email’]
    C.$_SESSION[‘text’]
    D.$_POST[‘text’]
    答:——B——
2.[单选题]以下PHP代码的运行结果是()。ob_start();for($i=0;$i echo $i;}$output = ob_get_contents();ob_end_clean();echo $ouput;?>
    A.12345678910
    B.1234567890
    C.0123456789
    D.Notice提示信息
    答:——D——
3.[单选题]如何给变量$a、$b、$c赋值才能使以下代码显示字符串”hello,word!”( )<br/></p><table cellspacing="0" cellpadding="0"><tbody><tr style=";height:15px" class="firstRow"><td width="429" valign="top" style="border: 1px solid black; background: transparent; padding: 5px;" height="15"><p><?php<p>$string = <span style="font-family:   &#39;Arial Unicode MS&#39;,sans-serif">‘</span>hello,   world!<span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">’</span>;</p>$a=?;$b=?;$c=?;<p>if($a){</p> if($b @&@& !$c){<p> echo<span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">‘</span>goodbye   cruel world!<span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">’</span>;</p>}else if(!$b @&@& !$c){<p> echo <span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">‘</span>nothing here<span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">’</span>;</p>}<p>}else{</p> If(!$b){<p>    if(!$a @&@& ($b @&@& !$c)){</p>    echo<span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">‘</span>hello world!<span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">’</span>;<p>}else{</p> echo <span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">‘</span>goodbye world<span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">’</span>;<p>}</p>}else{<p> echo <span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">‘</span>not quite<span style="font-family:&#39;Arial Unicode MS&#39;,sans-serif">’</span>;</p>}<p>}</p><p>?></p></td></tr></tbody></table><p><br/></p>
    A.false,true,false
    B.true,true,true
    C.false,true,true
    D.false,false,true
    答:——D——
4.[单选题]全等运算符“===”如何比较两个值?
    A.把它们转换成相同的数据类型再比较转换后的值
    B.只在两者的数据类型和值都相同时才返回True
    C.如果两个值是字符串,则进行词汇比较
    D.基于strcmp函数进行比较
    答:————
5.[单选题]详细阅读下面的FORM 表单和PHP代码。当在表单里面的两个文本框分别输入’php’和’great’的时候,PHP代码将在页面中打印出什么?( ) Index.php 代码如下:if(isset($_GET[‘element’])){ echo $_GET[‘element’];}
    A.什么都没有
    B.Aarry
    C.一个提示
    D.phpgreat
    答:————
6.[单选题]以下PHP代码运行的结果是什么?( )define(myvalue,’10’);$myarray=’dog’;$myarray[]=’human’;$myarray[‘myvalue’] = ‘cat’;$myarray[‘doy’]=’cat’;print ‘the value is:’;print$myarray;
    A.the value is :dog
    B.the value is :cat
    C.the value is :human
    D.the value is :10
    答:————
7.[单选题]考虑如下数据表和查询,如何添加索引功能提高查询速度?( )<br/>   Create table mytable(<br/>   Idint,<br/>   Name char(100),<br/>   Address1 varchar(100),<br/>   Address2 varchar(100),<br/>   Zipcode varshar(10),<br/>   Sity varchar(50),<br/>   Province varchar(2)<br/>   )<br/>   Select id, varchar<br/>   From mytable<br/>   Where id between 0 and 100<br/>   Order by name, zipcode;
    A.给Zipcode添加全文的索引
    B.给Name添加索引
    C.给Id添加索引,然后给Name和Zipcode分别添加索引
    D.给id添加索引
    答:————
8.[单选题]以下php程序远程的结果是什么?$array = array(‘3’=>’a’,1.1=>’b’,’c’,’d’);echo $array;?>
    A.1
    B.b
    C.c
    D.一个警告
    答:————
9.[单选题]下面的PHP代码输出什么?( )$s = ‘12345’; $s[$s] = ‘2’; echo $s; ?>
    A.12345
    B.12245
    C.22345
    D.11345
    答:————
10.[单选题]下面的PHP程序运行的结果是什么?( )function sort_my_array(@&$array){   return sort($array);}$a1 = array(3,2,1);var_dump(sort_my_array($a1));
    A.NULL
    B.array(3){=>int(1) =>int(2) =>int(2)}
    C.bool(true)
    D.array(3){=>int(1) =>int(2) =>int(3)}
    答:————
11.[判断题]fopen()可以打开一个文件,以对文件进行读和写操作?
    A.对
    B.错
    答:————
12.[判断题]要查看一个变量的数据类型,可使用函数type()
    A.对
    B.错
    答:————
13.[判断题]PHP中的对象分为系统内置对象和自定义对象两种
    A.对
    B.错
    答:————
14.[判断题]php变量使用之前需要定义变量类型
    A.对
    B.错
    答:————
15.[判断题]对数组进行升序排序并保留索引关系,应该用krsort函数
    A.对
    B.错
    答:————
16.[判断题]要检查一个常量是否定义,可以使用函数defined
    A.对
    B.错
    答:————
17.[判断题]$link1 =mysql_connect("localhost","root",""); $link2 =mysql_connect("localhost","root",""); mysql_close();?>数据库关闭指令将关闭$link1连接标识
    A.对
    B.错
    答:————
18.[判断题]将一个值或变量转换为字符类型的函数是 strval( )
    A.对
    B.错
    答:————
19.[判断题]更新一个数据库表数据的SQL语句是modify
    A.对
    B.错
    答:————
20.[判断题]运算符“++”可以对常量和变量进行累加1
    A.对
    B.错
    答:————
21.[判断题]执行以下代码后,输出结果为28。$num="23linux"+6;echo $num;
    A.对
    B.错
    答:————
22.[判断题]file( )函数返回的数据类型是数组
    A.对
    B.错
    答:————
23.[判断题]strtolower( )函数的功能是将给定的字符串全部转换为小写字母
    A.对
    B.错
    答:————
24.[判断题]执行以下PHP语句后,$y的值为0。$x=1;++$x;$y=$x++;echo $y;?>
    A.对
    B.错
    答:————
25.[判断题]$A=array("Monday","Tuesday",3=>"Wednesday");echo $A; 代码运行结果是:Monday
    A.对
    B.错
    答:————

页: [1]
查看完整版本: 北语网院23年1月《PHP》作业_1_100分