• 2022-11-02 问题

    在QuartusII软件中给设计文件生成符号文件的菜单是()。 A: assignments->pins B: File->Create/Update->create symbol file for current file C: File->Create/Update->create HDL design file for current file D: 以上都不对

    在QuartusII软件中给设计文件生成符号文件的菜单是()。 A: assignments->pins B: File->Create/Update->create symbol file for current file C: File->Create/Update->create HDL design file for current file D: 以上都不对

  • 2022-07-24 问题

    如果对上传文件进行验证,验证条件是,大小不超过10KB,扩展名必须是exe,下面哪条语句可以满足上述验证条件? A: $file->validate(["size"=>10000,'ext'=>exe])->move(ROOT_PAT"public/"); B: $file->validate(["size"=>10000,'ext'=>'exe'])->move(ROOT_PAT"public/"); C: $file->validate(["size"=>10240,'ext'=>exe])->move(ROOT_PAT"public/"); D: $file->validate(["size"=>10240,'ext'=>'exe'])->move(ROOT_PAT"public/");

    如果对上传文件进行验证,验证条件是,大小不超过10KB,扩展名必须是exe,下面哪条语句可以满足上述验证条件? A: $file->validate(["size"=>10000,'ext'=>exe])->move(ROOT_PAT"public/"); B: $file->validate(["size"=>10000,'ext'=>'exe'])->move(ROOT_PAT"public/"); C: $file->validate(["size"=>10240,'ext'=>exe])->move(ROOT_PAT"public/"); D: $file->validate(["size"=>10240,'ext'=>'exe'])->move(ROOT_PAT"public/");

  • 2022-06-09 问题

    在当前页面中包含a.htm的正确语句是( ) A: <%@ include=”a.htm”%> B: <jsp:include file=”a.htm”/> C: <%@ include page=”a.htm”%> D: <%@ include file=”a.htm”%>

    在当前页面中包含a.htm的正确语句是( ) A: <%@ include=”a.htm”%> B: <jsp:include file=”a.htm”/> C: <%@ include page=”a.htm”%> D: <%@ include file=”a.htm”%>

  • 2022-05-29 问题

    在/home/stud1/wang目录下有一文件file,使用 ( )可实现在后台执行命令,此命令将file文件中的内容输出到file.copy文件中。 A: cat file &gt;file.copy B: cat file file.copy C: &amp;cat<br/>file file.copy D: &amp;cat<br/>file &gt;file.copy

    在/home/stud1/wang目录下有一文件file,使用 ( )可实现在后台执行命令,此命令将file文件中的内容输出到file.copy文件中。 A: cat file &gt;file.copy B: cat file file.copy C: &amp;cat<br/>file file.copy D: &amp;cat<br/>file &gt;file.copy

  • 2022-06-17 问题

    下面关于动态包含的语法格式,书写正确的是( )。 A: &lt;jsp:forward file=”relativeURL” /&gt; B: &lt;jsp:forward path=”relativeURL” /&gt; C: &lt;jsp:forward page=”relativeURL” /&gt; D: &lt;%@include file=”relativeURL” /&gt;

    下面关于动态包含的语法格式,书写正确的是( )。 A: &lt;jsp:forward file=”relativeURL” /&gt; B: &lt;jsp:forward path=”relativeURL” /&gt; C: &lt;jsp:forward page=”relativeURL” /&gt; D: &lt;%@include file=”relativeURL” /&gt;

  • 2022-06-07 问题

    在Web应用程序中,编写了公共的处理页面名为manage.jsp,该页面包含在Web根目录下名为util的文件夹中,那么在Web根目录下的其他页面上引用该页面的代码正确的是( )。 A: &lt;% include file="util/manage.jsp"%&gt; B: &lt;%@ include file="util/manage.jsp"%&gt; C: &lt;%! include file="util/manage.jsp"%&gt; D: &lt;include file="util/manage.jsp"&gt;

    在Web应用程序中,编写了公共的处理页面名为manage.jsp,该页面包含在Web根目录下名为util的文件夹中,那么在Web根目录下的其他页面上引用该页面的代码正确的是( )。 A: &lt;% include file="util/manage.jsp"%&gt; B: &lt;%@ include file="util/manage.jsp"%&gt; C: &lt;%! include file="util/manage.jsp"%&gt; D: &lt;include file="util/manage.jsp"&gt;

  • 2022-05-30 问题

    在表单中,input元素的type属性文件域&lt;inputtype=”file”/&gt;。()

    在表单中,input元素的type属性文件域&lt;inputtype=”file”/&gt;。()

  • 2022-05-28 问题

    关于Python字符串操作的描述,错误的是 A: &gt;&gt;&gt; "hellohellohello"/3<br/>输出结果是"hello" B: &gt;&gt;&gt; "hello"*2<br/>输出结构是'hellohello' C: &gt;&gt;&gt; 'hello' + 1<br/>输出结果是<br/>Traceback<br/>(most recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>+ 1<br/>TypeError:<br/>must be str, not int D: &gt;&gt;&gt; "hello" - "world"<br/>输出结果是<br/>Traceback<br/>(most recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>- "world"<br/>TypeError:<br/>unsupported operand type(s) for -: 'str' and 'str'

    关于Python字符串操作的描述,错误的是 A: &gt;&gt;&gt; "hellohellohello"/3<br/>输出结果是"hello" B: &gt;&gt;&gt; "hello"*2<br/>输出结构是'hellohello' C: &gt;&gt;&gt; 'hello' + 1<br/>输出结果是<br/>Traceback<br/>(most recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>+ 1<br/>TypeError:<br/>must be str, not int D: &gt;&gt;&gt; "hello" - "world"<br/>输出结果是<br/>Traceback<br/>(most recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>- "world"<br/>TypeError:<br/>unsupported operand type(s) for -: 'str' and 'str'

  • 2022-05-28 问题

    关于Python字符串操作的描述,错误的是() A: &gt;&gt;&gt;<br/>"hellohellohello"/3<br/>输出结果是"hello" B: &gt;&gt;&gt;<br/>"hello"*2<br/>输出结构是'hellohello' C: &gt;&gt;&gt;<br/>'hello' + 1<br/>输出结果是<br/>Traceback (most<br/>recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>+ 1<br/>TypeError: must be<br/>str, not int D: &gt;&gt;&gt;<br/>"hello" - "world"<br/>输出结果是<br/>Traceback (most<br/>recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>- "world"<br/>TypeError:<br/>unsupported operand type(s) for -: 'str' and 'str'

    关于Python字符串操作的描述,错误的是() A: &gt;&gt;&gt;<br/>"hellohellohello"/3<br/>输出结果是"hello" B: &gt;&gt;&gt;<br/>"hello"*2<br/>输出结构是'hellohello' C: &gt;&gt;&gt;<br/>'hello' + 1<br/>输出结果是<br/>Traceback (most<br/>recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>+ 1<br/>TypeError: must be<br/>str, not int D: &gt;&gt;&gt;<br/>"hello" - "world"<br/>输出结果是<br/>Traceback (most<br/>recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>- "world"<br/>TypeError:<br/>unsupported operand type(s) for -: 'str' and 'str'

  • 2022-06-19 问题

    有以下表单,能正确接收上传的文件的是()&lt;input type=“file” name=“pic”/&gt; A: $_POST['pic'] B: $_GET['pic'] C: $_FILES['pic'] D: $_FILE['pic']

    有以下表单,能正确接收上传的文件的是()&lt;input type=“file” name=“pic”/&gt; A: $_POST['pic'] B: $_GET['pic'] C: $_FILES['pic'] D: $_FILE['pic']

  • 1 2 3 4 5 6 7 8 9 10