网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
创建d:/sun共享的命令是()。
- A、net share su=d:/sun /unlimit
- B、net use su=d:/sun /unlimit
- C、net user su=d:/sun /unlimit
- D、net share su= /sun /unlimit
参考答案
更多 “创建d:/sun共享的命令是()。A、net share su=d:/sun /unlimitB、net use su=d:/sun /unlimitC、net user su=d:/sun /unlimitD、net share su= /sun /unlimit” 相关考题
考题
24. The passage tells us __________.A. the sun is not the biggest starB. the sun is bigger than any other starC. only the sun can shineD. the sun is one of the farthest stars from us
考题
It is stated in astrology that ________.[A] the sun is so distant from us that it was hard to follow its motion[B] the sun was moving westward around the sky[C] the motion of the sun is at the rate of about thirty degrees every week[D] the motion of the sun is similar to the revolution of the earth around the sun
考题
以下关于.NET的描述,错误的是( )。 A.通用语言运行环境处于.NET开发框架的最低层 B..NET Framework管理和支持.NET程序的执行 C.Visual Studi0.NET是一个应用程序集成开发环境 D.Sun公司的.NET是基于开放互联网协议而推出的一系列的产品、技术和服务
考题
Givenacorrectlycompiledclasswhosesourcecodeis:Assumethattheclassfileislocatedin/foo/com/sun/sjcp/,thecurrentdirectoryis/foo/,andthattheclasspathcontains.(currentdirectory).WhichcommandlinecorrectlyrunsCommander?()A.javaCommanderB.javacom.sun.sjcp.CommanderC.javacom/sun/sjcp/CommanderD.java-cpcom.sun.sjcpCommanderE.java-cpcom/sun/sjcpCommander
考题
Givenacorrectlycompiledclasswhosesourcecodeis:packagecom.sun.sjcp;publicclassCommander{publicstaticvoidmain(String[]args){//morecodehere}}Assumethattheclassfileislocatedin/foo/com/sun/sjcp/,thecurrentdirectoryis/foo/,andthattheclasspathcontains.(currentdirectory).WhichcommandlinecorrectlyrunsCommander?()A.javaCommanderB.javacom.sim.sjcp.CommanderC.javacom/sun/sjcp/CommanderD.java-cpcom.sun.sjcpCommanderE.java-cpcom/sun/sjcpCommander
考题
以下映射网络文件夹的命令正确的是()A.NET USE Z: \\Server\ShareB.NET USE C:\ //Server/ShareC.NET SHARE Z: \\Server\ShareD.NET Send Server Share
考题
建立账号stu的命令是()(密码是123)。A、net user 123 stuB、net user 123 stu /addC、net use 123 stu /addD、net user stu 123 /add
考题
删除amdin$的命令是()。A、net share admin$B、net share admin$=c:/windows /delC、net share admin$ /delD、net use admin$ /del
考题
创建amdin$的命令是()。A、net user admin$B、net share admin$=c:/windowsC、net share admin$D、net use admin$
考题
删除账号stu的命令是()(密码是123)。A、net user 123 stuB、net user 123 stu /delC、net use 123 stu /delD、net user stu 123 /del
考题
在linux系统中,要查看另一台samba服务器(IP地址:172.16.100.100)上的共享资源信息,应执行()命令。A、net use /172.16.100.100B、net share /172.16.100.100C、smbclient -L 172.16.100.100D、smbclien //172.16.100.100
考题
如需对网络上的共享文件进行强行指定访问,可以使用()命令。A、net use//ip//shareusername/passB、net use//ip//sharepass/usernameC、net use//ip//sharepass/user:usernameD、net use//ip//sharepass/user:username
考题
日落降国旗。()A、The ensign should be hoisted when the sun rises.B、The ensign should be lowered when the sun rises.C、The ensign should be hoisted when the sun sets.D、The ensign should be lowered when the sun sets.
考题
已知enumweek{sun,mon,tue,wed,thu,fri,sat}day;则正确的赋值语句是()A、sun=0;B、san=day;C、sun=mon;D、day=sun;
考题
The technician needs to map a network share to the user’s Windows 7 computer from thecommand prompt. Which of the following commands will the technician execute?()A、NET SENDB、NET CONFIGC、NET USED、NET NAME
考题
package sun.scjp; public enum Color { RED, GREEN, BLUE } package sun.beta; // insert code here public class Beta { Color g = GREEN; public static void main( String[] argv) { System.out.println( GREEN); } } The class Beta and the enum Color are in different packages. Which two code fragments, inserted individually at line 2 of the Beta declaration, will allow this code to compile?()A、 import sun.scjp.Color.*;B、 import static sun.scjp.Color.*;C、 import sun.scjp.Color; import static sun.scjp.Color.*;D、 import sun.scjp.*; import static sun.scjp.Color.*;E、 import sun.scjp.Color; import static sun.scjp.Color.GREEN;
考题
下列哪个命令行可列出文件/usr/share/dict/words 中含有sun这个文本的所有行及其行号()A、grep–n sun /usr/share/dict/wordsB、grep–N /usr/share/dict/words sunC、grep–r sun /usr/share/dict/wordsD、grep–r /usr/share/dict/words sun
考题
From your Windows 2000 Professional computer, you need to map drive G to the default administrative share on drive C of a server named srv01. Which command can you use?()A、Net share C$=G:///B、Net share Admin$=G:/// C、Net use G:////AppSrv01/C$D、Net use G; //AppSrv01/Admin$
考题
单选题创建d:/sun共享的命令是()。A
net share su=d:/sun /unlimitB
net use su=d:/sun /unlimitC
net user su=d:/sun /unlimitD
net share su= /sun /unlimit
考题
单选题_____ I shall still go outside.A
As the sun is hotB
Hot as is the sunC
Hot as the sun isD
Though hot is the sun
考题
多选题package sun.scjp; public enum Color { RED, GREEN, BLUE } package sun.beta; // insert code here public class Beta { Color g = GREEN; public static void main( String[] argv) { System.out.println( GREEN); } } The class Beta and the enum Color are in different packages. Which two code fragments, inserted individually at line 2 of the Beta declaration, will allow this code to compile?()Aimport sun.scjp.Color.*;Bimport static sun.scjp.Color.*;Cimport sun.scjp.Color; import static sun.scjp.Color.*;Dimport sun.scjp.*; import static sun.scjp.Color.*;Eimport sun.scjp.Color; import static sun.scjp.Color.GREEN;
考题
单选题下列哪个命令行可列出文件/usr/share/dict/words 中含有sun这个文本的所有行及其行号()A
grep–n sun /usr/share/dict/wordsB
grep–N /usr/share/dict/words sunC
grep–r sun /usr/share/dict/wordsD
grep–r /usr/share/dict/words sun
热门标签
最新试卷