网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

在linux系统中,在当前目录下查找以d开头的,并且大小在0~200个字节之间的文件,以下命令正确的是()。

  • A、find -name 'd*' -size -0c –size +200c
  • B、find -name 'd*' -size +0c -200c
  • C、find -size +0c –size -200c -name 'd*'
  • D、find -name 'd*' -size +0c –size -200c
  • E、find -name 'd*' -size [0c-200c]

参考答案

更多 “在linux系统中,在当前目录下查找以d开头的,并且大小在0~200个字节之间的文件,以下命令正确的是()。A、find -name 'd*' -size -0c –size +200cB、find -name 'd*' -size +0c -200cC、find -size +0c –size -200c -name 'd*'D、find -name 'd*' -size +0c –size -200cE、find -name 'd*' -size [0c-200c]” 相关考题
考题 在网页中创建一个如下图所示的表单控件的HTML代码是(50)。A.<input type="text" name="T1" size="20">B.<textarea rows="1" name="T1" cols="20"></textarea>C.<input type="radio" value="T1" checked name="R1">D.<select size="1" name="T1"></select>

考题 利用命令find查找当前目录下的名称尾为.c的文件,并将结果输出到标准输出的命令是 ()A.find.-name"?.c"–printB.find.-name".c"-printC.find.-name"!*.c"–printD.find.-name"*.c"–print

考题 要将当前目录及其自目录下后缀名为“.bak”的文件全部删除,正确的命令是()。A.find–name“*.bak”–execrm{};B.find–name“*.bak”–execrm{}/;C.find–name“*.bak”–execrm/;D.find–name“*.bak”–execrm{}/

考题 如果要列出当前目录及其子目录下所有扩展名为“.c”的文件,使用的命令是()。A.ls-name“*.c”B.find–name“*.c”C.grep–name“*.c”D.search–name“*.c”

考题 利用find命令进行文件查找时,可以用到的选项有()。A.nameB.userC.groupD.size

考题 在网页中创建一个如下图所示的表单控件的HTML代码是______ 。A.<input type=“text”name=“T1” size=“20”>B.<textarea rows=“1”name=“T1” cols=“20”></textarea>C.<input type=“radio”value=“T1”checked name=“R1”D.<select size=“1”name=“T1”></sclect>

考题 下面关于元素的说法正确的是______。A.NAME:定义数据名,但是可以为空值B.MULTIPLE:允许多 下面关于<SELECT>元素的说法正确的是______。A.NAME:定义数据名,但是可以为空值B.MULTIPLE:允许多项选择C.SIZE:定义宽度D.SIZE:定义高度

考题 在网页中创建一个如图4-5所示的表单控件,其相应的HTML代码是(41)。A.<select size="1" name="T1"></select>B.<textarea rows="2" name="T1" cols="20"></textarea>C.<input type="radio" value="T1" checked name="R1">D.<input type="text" name="T1" size="20">

考题 在网页中创建一个如下图所示的表单控件的HTML代码是______。A.<input type="text"name="T1"size="20">B.<textarea rows="1"name="T1"cols="20"></textarea>C.<inputtype="radio"value="T1"checkedname="R1">D.<select size="1"name="T1"></select>

考题 在linux系统中,查找/home/目录下文件名以test开头的文件,以下正确的命令是()。A、find /home -name test*B、find -name test* /homeC、find test* /homeD、find -n test* /home

考题 Blob对象有两个属性,一个是size属性,表示字节长度,一个是name属性,表示文件的名称。

考题 创建一个滚动菜单的HTML代码是?()A、form/form  B、select multiple name="NAME" size=?/select C、option  D、select name="NAME"/select

考题 Which of the following commands would result in the following output: M.M.M()。A、Ping 10.1.1.1 Data Pattern MB、Ping 10.1.1.1 timeout 0C、Ping 10.1.1.1 size 1500 df-bitD、Ping 10.1.1.1 source loopback 0E、Ping 10.1.1.1 size 1500F、Ping 10.1.1.1 size 1500 Strict

考题 The IT department requested a report to list each server name and the name of each department that utilizes resources from each server. You create a tabular layout that breaks on the server name. You ran the report and noticed that the department field is too large for most of the department names. Which field size setting would you use to allow the field to be smaller but not larger than the field layout size?()A、Fixed B、Expand C、Contract D、Variable

考题 若上传文件的名字为userfile,则下列选项中可以用于判断上传文件类型的是()。A、$_FILES[’userfile’][’name’]B、$_FILES[’userfile’][’type’]C、$_FILES[’userfile’][’tmp_name’]D、$_FILES[’userfile’][’size’]

考题 public class Person {  private name;  public Person(String name) {  this.name = name;  }  public int hashCode() {  return 420;  }  }  Which is true?() A、 The time to find the value from HashMap with a Person key depends on the size of the map.B、 Deleting a Person key from a HashMap will delete all map entries for all keys of typePerson.C、 Inserting a second Person object into a HashSet will cause the first Person object to beremoved as a duplicate.D、 The time to determine whether a Person object is contained in a HashSet is constant and does NOT depend on the size of the map.

考题 表单元素复选框的代码为()。A、<inputtype="text"name="..."size="..."maxlength="..."value="...">B、<textareaname="..."cols="..."rows="..."wrap="...">C、<inputtype="checkbox"name="..."value="...">D、<inputtype="radio"name="..."value="...">

考题 表单元素文本域的代码为()。A、<inputtype="text"name="..."size="..."maxlength="..."value="...">B、<textareaname="..."cols="..."rows="..."wrap="...">C、<inputtype="checkbox"name="..."value="...">D、<inputtype="radio"name="..."value="...">

考题 以下选项中改变样式属性的代码正确的是()。A、name.style.font-size=’20px’;B、name.style.fontsize=’20px’;C、name.style.size=’20px’;D、name.style.fontSize=’20px’;

考题 You have executed this command to change the size of the database buffer cache: SQL ALTER SYSTEM SET DB_CACHE_SIZE=2516582; System altered.  To verify the change in size, you executed this command: SQL SHOW PARAMETER DB_CACHE_SIZE NAME TYPE VALUE  ------------------- ----------- ------------------  db_cache_size big integer 4194304  (4M)  Why is the value set to 4194304 and not to 2516582()A、because 4194304 is the granule sizeB、because 4194304 is the standard block sizeC、because 4194304 is the largest nonstandard block size defined in the databaseD、because 4194304 is the total size of data already available in the database buffer cache

考题 你正在创建一个skin文件,它用来格式化Label控件的为蓝色文本、TimesNewRoman字体。你应该使用下面那一个skin文件?()A、asp:Label BackColor="White" ForeColor="Blue" Font-Name="Times New Roman"Font-Size="10px" /B、asp:Label runat="server" ID="BlueLabel" BackColor="White" ForeColor="Blue"Font-Name="Times New Roman" Font-Size="10px" /C、asp:Label ID="BlueLabel" BackColor="White" ForeColor="Blue" Font-Name="Times New Roman" Font-Size="10px" /D、asp:Label runat="server" BackColor="White" ForeColor="Blue"Font-Name="Times New Roman" Font-Size="10px" /

考题 多选题You set the value of the SGA_TARGET initialization parameter to 1G to enable Oracle to automatically resize most of the memory components according to the current workload in the database. You issue the following statement:   SQL SELECT name, value, isdefault  2 FROM v$parameter   3 WHERE name LIKE ’%size%’;   The output of this statement displays that the DB_CACHE_SIZE, SHARED_POOL_SIZE,  LARGE_POOL_SIZE, and JAVA_POOL_SIZE initialization parameters contain a zero value.  What does this imply?()AThe SGA_TARGET initialization parameter cannot be set to a value less than 1GBThe SGA_TARGET initialization parameter cannot be set to a value greater than 1GCThe Memory Advisor of the Oracle Enterprise Manager 10g cannot be used to obtain advice on the important memory components of the SGADThe values of the DB_CACHE_SIZE, SHARED_POOL_SIZE, LARGE_POOL_SIZE, and JAVA_POOL_SIZE initialization parameters cannot be set manually.ENo minimum limits are imposed on the DB_CACHE_SIZE, SHARED_POOL_SIZE, LARGE_POOL_SIZE, and  JAVA_POOL_SIZE initialization parameters.FThe Automatic Shared Memory Management feature cannot be disabled unless you specify values for the  DB_CACHE_SIZE, SHARED_POOL_SIZE, LARGE_POOL_SIZE, and JAVA_POOL_SIZE initialization parameters in the initialization parameter file.

考题 多选题在linux系统中,在当前目录下查找以d开头的,并且大小在0~200个字节之间的文件,以下命令正确的是()。Afind -name 'd*' -size -0c –size +200cBfind -name 'd*' -size +0c -200cCfind -size +0c –size -200c -name 'd*'Dfind -name 'd*' -size +0c –size -200cEfind -name 'd*' -size [0c-200c]

考题 单选题public class Person {  private name;  public Person(String name) {  this.name = name;  }  public int hashCode() {  return 420;  }  }  Which is true?()A  The time to find the value from HashMap with a Person key depends on the size of the map.B  Deleting a Person key from a HashMap will delete all map entries for all keys of typePerson.C  Inserting a second Person object into a HashSet will cause the first Person object to beremoved as a duplicate.D  The time to determine whether a Person object is contained in a HashSet is constant and does NOT depend on the size of the map.

考题 单选题The IT department requested a report to list each server name and the name of each department that utilizes resources from each server. You create a tabular layout that breaks on the server name. You ran the report and noticed that the department field is too large for most of the department names. Which field size setting would you use to allow the field to be smaller but not larger than the field layout size?()A Fixed B Expand C Contract D Variable

考题 单选题若上传文件的名字为userfile,则下列选项中可以用于判断上传文件类型的是()。A $_FILES[’userfile’][’name’]B $_FILES[’userfile’][’type’]C $_FILES[’userfile’][’tmp_name’]D $_FILES[’userfile’][’size’]

考题 单选题你正在创建一个skin文件,它用来格式化Label控件的为蓝色文本、TimesNewRoman字体。你应该使用下面那一个skin文件?()A asp:Label BackColor=White ForeColor=Blue Font-Name=Times New RomanFont-Size=10px /B asp:Label runat=server ID=BlueLabel BackColor=White ForeColor=BlueFont-Name=Times New Roman Font-Size=10px /C asp:Label ID=BlueLabel BackColor=White ForeColor=Blue Font-Name=Times New Roman Font-Size=10px /D asp:Label runat=server BackColor=White ForeColor=BlueFont-Name=Times New Roman Font-Size=10px /