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

题目内容 (请给出正确答案)
单选题
A UNIX user named Bob wants to replace his chess program with a new one, but he is hot sure where the old one is installed. Bob is currently able to run a Java chess program starting from his home directory /home/bob using the command:  java -classpath /test:/home/bob/downloads/* .jar games.Chess  Bob‟s CLASSPATH is set (at login time) to:  /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/* .jar  What is a possible location for the Chess.class file?()
A

 /test/Chess.class

B

 /home/bob/Chess.class

C

 /test/games/Chess.class

D

 /usr/lib/games/Chess.class

E

 /home/bob/games/Chess.class

F

 inside jarfile /opt/java/lib/Games.jar (with a correct manifest)

G

 inside jarfile /home/bob/downloads/Games.jar (with a correct manifest)


参考答案

参考解析
解析: 暂无解析
更多 “单选题A UNIX user named Bob wants to replace his chess program with a new one, but he is hot sure where the old one is installed. Bob is currently able to run a Java chess program starting from his home directory /home/bob using the command:  java -classpath /test:/home/bob/downloads/* .jar games.Chess  Bob‟s CLASSPATH is set (at login time) to:  /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/* .jar  What is a possible location for the Chess.class file?()A  /test/Chess.classB  /home/bob/Chess.classC  /test/games/Chess.classD  /usr/lib/games/Chess.classE  /home/bob/games/Chess.classF  inside jarfile /opt/java/lib/Games.jar (with a correct manifest)G  inside jarfile /home/bob/downloads/Games.jar (with a correct manifest)” 相关考题
考题 AUNIXusernamedBobwantstoreplacehischessprogramwithanewone,butheishotsurewheretheoldoneisinstalled.BobiscurrentlyabletorunaJavachessprogramstartingfromhishomedirectory/home/bobusingthecommand:java-classpath/test:/home/bob/downloads/*.jargames.ChessBob?sCLASSPATHisset(atlogintime)to:/usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jarWhatisapossiblelocationfortheChess.classfile?()A./test/Chess.classB./home/bob/Chess.classC./test/games/Chess.classD./usr/lib/games/Chess.classE./home/bob/games/Chess.classF.insidejarfile/opt/java/lib/Games.jar(withacorrectmanifest)G.insidejarfile/home/bob/downloads/Games.jar(withacorrectmanifest)

考题 Given:And MainClass exists in the /apps/com/company/application directory. Assume the CLASSPATHenvironment variable is set to . (current directory). Which two java commands entered at the command line will run MainClass?()A.java MainClass if run from the /apps directoryB.java com.company.application.MainClass if run from the /apps directoryC.java -classpath /apps com.company.application.MainClass if run from any directoryD.java -classpath . MainClass if run from the /apps/com/company/application directoryE.java -classpath /apps/com/company/application:. MainClass if run from the /apps directoryF.java com.company.application.MainClass if run from the /apps/com/company/application directory

考题 AUNIXusernamedBobwantstoreplacehischessprogramwithanewone,butheisnotsurewheretheoldoneisinstalled.BobiscurrentlyabletorunaJavachessprogramstartingfromhishomedirectory/home/bobusingthecommand:java-classpath/test:/home/bob/downloads/*.jargames.ChessBob’sCLASSPATHisset(atlogintime)to:/usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jarWhatisapossiblelocationfortheChess.classfile?()A./test/Chess.classB./home/bob/Chess.classC./test/games/Chess.classD./usr/lib/games/Chess.classE./home/bob/games/Chess.class

考题 A class games.cards.Poker is correctly defined in the jar file Poker.jar.  A user wants to execute the main method of Poker on a UNIX system using the command:  java games.cards.Poker  What allows the user to do this?() A、 put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/javaB、 put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/*.jarC、 Put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/Poker.jarD、 put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuff/javaE、 put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuffijava/*.jarF、 put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuff/java/Poker.jar

考题 Bob, a user, reports that his computer is running slower since he viewed an online training presentation. Bob is also receiving an increased amount of spam email. Which of the following is the MOST likely cause of Bob’s issue?()A、VirusB、WormC、Network bandwidthD、Malware

考题 A UNIX user named Bob wants to replace his chess program with a new one,but he is hot sure where the old one is in stalled.Bob is currently able to run a Java chess program starting from his home directory/home/bobusingthecommand: java-classpath/test:/home/bob/downloads/*.jargames.ChessBob’sCLASSPATHisset(atlogintime)to: /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jar What is a possible location for the Chess.class file?()A、/test/Chess.classB、/home/bob/Chess.classC、/test/games/Chess.classD、/usr/lib/games/Chess.classE、/home/bob/games/Chess.classF、inside jarfile/opt/java/lib/Games.jar(withacorrectmanifest)G、inside jarfile/home/bob/downloads/Games.jar(withacorrectmanifest)

考题 A class games.cards.Poker is correctly defined in the jar file Poker.jar. A user wants to execute the main method of Poker on a UNIX system using the command: java games.cards.Poker What allows the user to do this?()A、put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/javaB、put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/java/*.jarC、Put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/java/Poker.jarD、put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/javaE、put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/java/*.jarF、put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/java/Poker.jar

考题 package com.company.application;  public class MainClass {  public static void main(String[] args) { }  }  And MainClass exists in the /apps/com/company/application directory. Assume the CLASSPATH environment variable is set to “.“ (current directory).  Which two java commands entered at the command line will run MainClass?()A、 java MainClass if run from the /apps directoryB、 java com.company.application.MainClass if run from the /apps directoryC、 java -classpath /apps com.company.application.MainClass if run from any directoryD、 java -classpath . MainClass if run from the /apps/com/company/application directoryE、 java -classpath /apps/com/company/application:. MainClass if run from the /apps directoryF、 java com.company.application.MainClass if run from the /apps/com/company/application directory

考题 A UNIX user named Bob wants to replace his chess program with a new one, but he is hot sure where the old one is installed. Bob is currently able to run a Java chess program starting from his home directory /home/bob using the command:  java -classpath /test:/home/bob/downloads/* .jar games.Chess  Bob‟s CLASSPATH is set (at login time) to:  /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/* .jar  What is a possible location for the Chess.class file?() A、 /test/Chess.classB、 /home/bob/Chess.classC、 /test/games/Chess.classD、 /usr/lib/games/Chess.classE、 /home/bob/games/Chess.classF、 inside jarfile /opt/java/lib/Games.jar (with a correct manifest)G、 inside jarfile /home/bob/downloads/Games.jar (with a correct manifest)

考题 A class games.cards.Poker is correctly defined in the jar file Poker.jar. A user wants to execute the main method of Poker on a UNIX system using the command:java games.cards. Poker What allows the user to do this?()A、put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/javaB、put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/*.jarC、put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/Poker.jarD、put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuff/java

考题 A UNIX user named Bob wants to replace his chess program with a new one, but he is not sure where theold one is installed.  Bob is currently able to run a Java chess program starting from his home directory /home/bob using thecommand: java -classpath /test:/home/bob/downloads/*.jar games. Chess Bob’s CLASSPATH is set (at login time) to: /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jar What is a possible location for the Chess.class file?()A、/test/Chess.classB、/home/bob/Chess.classC、/test/games/Chess.classD、/usr/lib/games/Chess.classE、/home/bob/games/Chess.class

考题 A UNIX user named Bob wants to replace his chess program with a new one, but he is not sure where theold one is installed. Bob is currently able to run a Java chess program starting from his home directory /home/bob using the command: java -classpath /test:/home/bob/downloads/*.jar games.Chess Bob’s CLASSPATH is set (at login time) to: /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jar  What is a possible location for the Chess.class file?()A、/test/Chess.classB、/home/bob/Chess.classC、/test/games/Chess.classD、/usr/lib/games/Chess.classE、/home/bob/games/Chess.class

考题 A UNIX user named Bob wants to replace his chess program with a new one, but he is not sure where theold one is installed. Bob is currently able to run a Java chess program starting from his home directory /home/bob using the command: java-classpath /test:/home/bob/downloads/*.jar games.Chess Bob'sCLASSPATH is set (at login time) to/usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jar What is a possible location for the Chess.class file?()A、/test/Chess.classB、/home/bob/Chess.classC、/test/games/Chess.classD、/usr/lib/games/Chess.classE、/home/bob/games/Chess.classF、inside jarfile /opt/java/lib/Games.jar (with a correct manifest)G、inside jarfile /home/bob/downloads/Games.jar (with a correct manifest)

考题 You are the administrator of your company's network. A user named David runs Windows 2000 Professional on his portable computer. David wants to be able to work at home on files that he created at the office and stored on the company network. Prior to logging off the network and leaving the office, David enables offline files.   David calls you from home and reports that copies of his folders and files on the network are not available on his portable computer. What should you instruct David to do, so that he can proceed with his work?()A、Enable file and print sharing. David will be able to access his files at home immediately. B、Synchronize all offline files. David will be able to access his files at home immediately. C、At the office, make all files available offline. David will be able to access his files the next time he logs off the network. D、At the office, create a shortcut to the Offline Files folder. David will be able to access his files the next time he logs off the network. 

考题 单选题A class games.cards.Poker is correctly defined in the jar file Poker.jar.  A user wants to execute the main method of Poker on a UNIX system using the command:  java games.cards.Poker  What allows the user to do this?()A  put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/javaB  put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/*.jarC  Put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/Poker.jarD  put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuff/javaE  put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuffijava/*.jarF  put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuff/java/Poker.jar

考题 单选题A class games.cards.Poker is correctly defined in the jar file Poker.jar. A user wants to execute the main method of Poker on a UNIX system using the command: java games.cards.Poker What allows the user to do this?()A put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/javaB put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/java/*.jarC Put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/java/Poker.jarD put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/javaE put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/java/*.jarF put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/java/Poker.jar

考题 单选题Bob, a user, reports that his computer is running slower since he viewed an online training presentation. Bob is also receiving an increased amount of spam email. Which of the following is the MOST likely cause of Bob’s issue?()A VirusB WormC Network bandwidthD Malware

考题 单选题A UNIX user named Bob wants to replace his chess program with a new one, but he is not sure where theold one is installed. Bob is currently able to run a Java chess program starting from his home directory /home/bob using the command: java-classpath /test:/home/bob/downloads/*.jar games.Chess Bob'sCLASSPATH is set (at login time) to/usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jar What is a possible location for the Chess.class file?()A /test/Chess.classB /home/bob/Chess.classC /test/games/Chess.classD /usr/lib/games/Chess.classE /home/bob/games/Chess.classF inside jarfile /opt/java/lib/Games.jar (with a correct manifest)G inside jarfile /home/bob/downloads/Games.jar (with a correct manifest)

考题 单选题Bob, a user, reports that his computer is running slower since he viewed an online training presentation. Bob is also receiving an increased amount of spam email. Which of the following is the MOST likely cause of Bob’s issue?()A VirusB WormC Network bandwidthD Malware

考题 单选题You are the administrator of your company’s network. A user named Peter runs Windows 2000 Professional on his portable computer. Peter wants to be able to work at home on files that were created in the office on the company network.  Prior to logging off the network and leaving the office, Peter enables Offline Files. Peter calls you from home and reports that copies of his folders and files on the network are not available on his portable computer.  What should you instruct Peter to do? ()A  Enable file and print sharing.   Peter will be able to access his files at home immediately. B  Synchronize all offline files.   Peter will be able to access his files at home immediately. C  At the office, make the files available offline.   Peter will be able to access his files the next time he logs off the network. D  At the office, create a shortcut to the Offline Files folder.   Peter will be able to access his files the next time he logs off the network. 

考题 单选题A UNIX user named Bob wants to replace his chess program with a new one,but he is hot sure where the old one is in stalled.Bob is currently able to run a Java chess program starting from his home directory/home/bobusingthecommand: java-classpath/test:/home/bob/downloads/*.jargames.ChessBob’sCLASSPATHisset(atlogintime)to: /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jar What is a possible location for the Chess.class file?()A /test/Chess.classB /home/bob/Chess.classC /test/games/Chess.classD /usr/lib/games/Chess.classE /home/bob/games/Chess.classF inside jarfile/opt/java/lib/Games.jar(withacorrectmanifest)G inside jarfile/home/bob/downloads/Games.jar(withacorrectmanifest)

考题 单选题A UNIX user named Bob wants to replace his chess program with a new one, but he is not sure where theold one is installed. Bob is currently able to run a Java chess program starting from his home directory /home/bob using the command: java -classpath /test:/home/bob/downloads/*.jar games.Chess Bob’s CLASSPATH is set (at login time) to: /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jar  What is a possible location for the Chess.class file?()A /test/Chess.classB /home/bob/Chess.classC /test/games/Chess.classD /usr/lib/games/Chess.classE /home/bob/games/Chess.class

考题 单选题A class games.cards.Poker is correctly defined in the jar file Poker.jar. A user wants to execute the main method of Poker on a UNIX system using the command:java games.cards. Poker What allows the user to do this?()A put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/javaB put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/*.jarC put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/Poker.jarD put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuff/java

考题 单选题A UNIX user named Bob wants to replace his chess program with a new one, but he is not sure where theold one is installed. Bob is currently able to run a Java chess program starting from his home directory /home/bob using the command: java -classpath /test:/home/bob/downloads/*.jar games.Chess Bob’s CLASSPATH is set (at login time) to: /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jar  What is a possible location for the Chess.class file?()A /test/Chess.classB /home/bob/Chess.classC /test/games/Chess.classD /usr/lib/games/Chess.classE /home/bob/games/Chess.class

考题 单选题You administer Company's network that consists of 100 Windows 2000 Professional computers and nine Windows 2000 Server computers. All users at Company save their work files in home folders on a network server. The network server is configured with two NTFS volumes. One of the NTFS volumes contains the home folders for the users at Company and the other NTFS volume contains a shared folder named PROGRESS, which is used for users to save temporary work files in. Disk quotas and Encrypting File System (EFS) is enabled on the NTFS volume with the home folders. All users have a default limit of 100 MB and the option to deny space to users who exceed their limit has been enabled.  A user reports that he cannot save any files to his home folder. He also cannot update files in his home folder. The user currently has no data stored in the PROGRESS folder. When he attempts to save files to his home folder, he receives the following error message: "Insufficient disk space." Other users are not experiencing this problem with their home folders. You want to allow the user to save files on the network server.  What should you do?()A  Use Windows Backup to archive and remove old files on the server.B  Compress the files in the user’s home folder to allow additional files to be saved.C  Move some of the files from the user’s home folder to the PROGRESS share folder.D  Log on the network as a Recovery Agent. Decrypt all of the user’s files in his home folder. E  Lon on to the network by using the domain Administrator account. Grant the user Full Control permission to his home folder.

考题 单选题You are the administrator of your company's network. A user named David runs Windows 2000 Professional on his portable computer. David wants to be able to work at home on files that he created at the office and stored on the company network. Prior to logging off the network and leaving the office, David enables offline files.   David calls you from home and reports that copies of his folders and files on the network are not available on his portable computer. What should you instruct David to do, so that he can proceed with his work?()A Enable file and print sharing. David will be able to access his files at home immediately. B Synchronize all offline files. David will be able to access his files at home immediately. C At the office, make all files available offline. David will be able to access his files the next time he logs off the network. D At the office, create a shortcut to the Offline Files folder. David will be able to access his files the next time he logs off the network. 

考题 单选题A UNIX user named Bob wants to replace his chess program with a new one, but he is not sure where theold one is installed.  Bob is currently able to run a Java chess program starting from his home directory /home/bob using thecommand: java -classpath /test:/home/bob/downloads/*.jar games. Chess Bob’s CLASSPATH is set (at login time) to: /usr/lib:/home/bob/classes:/opt/java/lib:/opt/java/lib/*.jar What is a possible location for the Chess.class file?()A /test/Chess.classB /home/bob/Chess.classC /test/games/Chess.classD /usr/lib/games/Chess.classE /home/bob/games/Chess.class