An application server is running slowly. After viewing performance monitoring data it is detected that the disk queue length is high. Which of the following could BEST resolve the situation?() A. Add more disk drives.B. Increase the amount of virtual memory.C. Add a faster processor.D. Add more memory to stop paging to disk.

An application server is running slowly. After viewing performance monitoring data it is detected that the disk queue length is high. Which of the following could BEST resolve the situation?()

A. Add more disk drives.

B. Increase the amount of virtual memory.

C. Add a faster processor.

D. Add more memory to stop paging to disk.


相关考题:

阅读以下说明和C++程序,将应填入(n)处的字句写在对应栏内。【说明】字符串在程序设计中扮演着重要角色。现需要设计字符串基类string,包含设置字 符串、返回字符串长度及内容等功能。另有一个具有编辑功能的串类edlt_string,派生于string,在其中设置一个光标,使其能支持在光标处的插入、删除操作。【程序】include <iostream.h>include <stdio.h>include <string.h>class string{int length;char *data;public:int get_length() {return length;}char *get_data() {return data;}~string() {delete data;}int set data(int in_length, char *in_data);int set_data(char *data);void print() {cout<<data<<endl;}};class edit_string: public string{int cursor;public:int get_cursor() {return cursor;}void move_cursor(int dis) {cursor=dis;}int add_data(string *new_data);void delete_data(int num);};int string::set_data(int in_length,char *in_data){length=in_length;if(!data)delete data;(1)strcpy(data,in_data);return length;}int string::set data(char *in_data){(2)if(!data)delete data;(1)strcpy(data,in_data);return length;}int edit_string::add_data(string *new_data){int n,k,m;char *cp,*pt;n=new_data->get_length();pt=new_data->get_data();cp=this->get_data();m=this->get_length();char *news=new char[n+m+1];for(int i=0; i<cursor; i++)news[i]=cp[i];k=i;for(int j=0; j<n; i++,j++)news[i]=pt[j];cursor=i;for(j=k; j<m; j++,i++)(3)news[i]='\0';(4)delete news;return cursor;}void edit string::delete_data( int num){int m;char *cp;cp=this->get_data();m=this->get_length();for(int i=cursor; i<m; i++)(5)cp[i]='\0';}

You’re going to have a quiz ( )by another two in the ( )month. A. followed,followedB. followed,followingC. following,followedD. following,following

You are the network administrator for Litware, Inc. All network servers run Windows Server 2003.Your IIS server is named Server6. Its configuration is shown in the exhibit. (Click the Exhibit button.)Users access the internal network by connecting to http://server6.litwareinc.intra.A folder named Marketing_Data stores the Web interface for the company‘s client management tool. Currently,users in the marketing department access this tool by connecting to http://server6.litwareinc.intra/Marketing_Web.You share Marketing_Data on a server named Server2.You need to modify Server6 to ensure that marketing users can access Marketing_Data through the internal network.What should you do? ()A. Create a new virtual directory named Marketing_Web under the default Web site. Specify \\server2\Marketing_Data as the Web site content directory.B. Create a new Web site named Marketing_Data. Specify \\server2\Marketing_Data as the Web site home directory.C. Create a new Web site named Marketing_Data. Specify Marketing_Data as the host header name of the Web site.D. Redirect the default Web site home directory to http://server2/Marketing_Data. Specify Marketing_Data as the host header name of the default Web site.

Thewarninglevelthresholdvalueforatablespace,EXECUTEDBMS_SERVER_ALERT.SET_THRESHOLD(dbms_server_alert.tablespace_pct_full,dbms_server_alert.operator_ge,80,dbms_server_alert.operator_ge,90,1,1,NULL,dbms_server_alert.object_type_tablespace,’DATA’);Whatwillbetheresultofthecommand?()

You are the administrator of a Windows NT Server 4.0 computer named Ezonexam1. Ezonexam1 is a backup domain controller (BDC), and a member of Ezonexam.com's Windows 2000 Active Directory domain. Ezonexam1 contains five hard disks. Disk 0 and 1 are configured as a Windows NT 4.0 mirror set.The mirror set contains the operating system files and 500 MB of free disk space. Disk 2, 3 and 4 are configured as a Windows NT 4.0 stripe set with parity and contain employee data files. The Windows NT 4.0 stripe set with parity has a maximum capacity of 140 GB and contains 15 GB of free disk space.Ezonexam1 runs an application that is used by 400 company employees. A new version of the application is available. You need to install the new version, but it requires Windows 2000 Server. Also, the application will not run on a domain controller.You need to install the new application on Ezonexam1 as quickly as possible. What should you do first?A.On Ezonexam1, back up the employee data files. Then format all five disks and perform. a clean installation of Windows 2000 Server. Restore the employee data files.B.On Ezonexam1, install Windows 2000 Server. Configure Ezonexam1 to use a dual-boot configuration that includes Windows NT Server 4.0 and Windows 2000 Server.C.Upgrade Ezonexam1 to Windows 2000 Server. During the upgrade, select the option to make Ezonexam1 a member server.D.Upgrade Ezonexam1 to Windows 2000 Server. During the upgrade, select the option to make Ezonexam1 a domain controller. After the upgrade is complete, demote Ezonexam1.

Which of the following provides the MOST redundancy for a corporate server network?() A. Server-to-server replicationB. Server clusteringC. Hot siteD. Disk-to-disk replication

Which of the following offers the MOST redundancy for a system but is also very costly?() A. RAID implementationB. Disk-to-disk replicationC. Server-to-server clusteringD. Hot site replication

ExaminetheRMANcommand:SWITCHDATAFILE’/DISK3/user_data01.dbf’;Whichcommanddoyouneedtoissuebeforeyouissuetheabovecommand,sothatRMANfindsthefileintherestoredlocationof’DISK2/user_data01.dbf’?() A.RESTOREDATAFILE’/DISK2/user_data01.dbf’B.RESTOREDATAFILE’/DISK3/user_data01.dbf’C.SETNEWNAMEFOR’/DISK3/user_data01.dbf’TO’/DISK2/user_data01.dbf’D.SETNEWNAMEFOR’/DISK2/user_data01.dbf’TO’/DISK3/user_data01.dbf’

22. At first,the children liked __________best.A. playing ballsB. throwing stonesC. swimmingD. running

对于顺序表L,指出以下算法的功能。 void fun(SqList L) { int i,j=0; for (i=1;i<L.length;i++) if (L.data[i]>L.data[j]) j=i; for (i=j;i<L.length-1;i++) L.data[i]=L.data[i+1]; L.length--; }