A company is deploying a new file server to consolidate shares from several legacy servers. Whichof the following is the BEST method to ensure that the new file shares are being used?()
A: Setup the new file server and shut down the legacy servers.
B: Remove all the DNS entries for the legacy servers.
C: Create a logon script to remap the old file shares to the new file shares.
D: Go to each users computer, remove all shares and setup the new shares.
A: Setup the new file server and shut down the legacy servers.
B: Remove all the DNS entries for the legacy servers.
C: Create a logon script to remap the old file shares to the new file shares.
D: Go to each users computer, remove all shares and setup the new shares.
举一反三
- Which of the following best defines the market capitalisation for a company's shares? A: When a company is listed ie goes 'public' B: When a company issues new shares and thus increases its capital C: Current share price D: Share price x number of shares in issue
- 下列__________说法是正确的?I:File file = new File("input.txt");try (Scanner input = new Scanner(file)) { String line = input.nextLine();}II:try (File file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}III:File file;try (file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}IV:File file;Scanner input;try (file = new File("input.txt"); input = new Scanner(file);) { String line = input.nextLine();} A: I B: II C: III D: IV
- 下列写法错误的是 A: File f = new File ("a.txt"); B: File f = new File ("d:\\a.txt"); C: FileInputStream fis = new FileInputStream (new File ("a.txt")); D: FileOutputStream fos = new FileOutputStream ( File ("."));
- 创建一个d盘aa文件夹下news.txt文件对象,以下正确的是 A: File file = new File("d:/aa"); B: File file = new File("d:/aa/news.txt"); C: File file = new File("d:/news.txt"); D: File file = new File("d:\aa\news.txt");
- 3.1 下面是创建File对象的语句,错误的是( ) A: File f=new File("d:\\text.txt"); B: File f=new File("d: "); C: File f=new File("d:","text.txt"); D: File f=new File("d:\text.txt");