网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
You wish to kill a process with a PID of 123. Select the command which exiting.()
A
kill-1 123
B
kill-9 123
C
kill-15 123
D
kill-17 123
参考答案
参考解析
解析:
暂无解析
更多 “单选题You wish to kill a process with a PID of 123. Select the command which exiting.()A kill-1 123B kill-9 123C kill-15 123D kill-17 123” 相关考题
考题
请分析以下程序。 int main() { pid_t pid; pid = fork(); if(pid==0) printf("I am the child process, my process ID is%d\n",getpid()); else printf("I am the parent process, my process ID is%d\n",getpid());} 那么,该程序正确运行后的结果是A.I am the child process, my process ID is 3744 I am the parent process, my process ID is 3987B.I am the child process, my process ID is 3744C.I am the parent process, my process ID is 3987D.不输出任何信息
考题
对于如下C语言程序 int main() { pid_t pid; int x=1; pid = fork(); if(pid==0) printf("I am the child process, x=%d\n", ++x); else printf("I am the parent process, x=%d\n", --x); } 在UNIX操作系统中正确编译链接后,其正确的运行结果是A.I am the child process, x=2B.I am the parent process, x=0C.I am the parent process, x=2D.I am the child process, x=0
考题
命令kill9的含义是()。A.kills the process whose PID is 9B.kills all processes belonging to UID 9C.sends SIGKILL to the process whose PID is 9D.sends SIGTERM to the process whose PID IS 9
考题
You configure an HP Jet Direct print device as sown in the Network Diagram exhibit.You want to create and share a printer at Srv2.sales.justtogs.com that is connected to the TCP/IP port of the print device. However, when you enter the IP address of the device, you receive the dialog box shown in thePrinterPortWizard exhibit.PrinterPortWizardWhat should you do?A.Select Hewlett Packard JetDirect from the Standard drop-down list.B.Select the Custom option button, click the Settings command button, and select the LPR protocol.C.Change the IP address of the print device to 10.5.20.200.D.Change the subnet mask of the print device to 255.0.0.0.E.Change the default gateway address on Srv2.sales.justtogs.com to 10.5.20.100.
考题
Certkiller .com has a file server named Certkiller -SR07 that stores old inventory files. Certkiller .com has given you the task of creating an application to archive these old inventory files.The inventory files have to be compressed prior to being uploaded to Certkiller .com‘s Web server.You are currently writing a method that will receive a byte array and compress it into a new file.You need to ensure that a data corruption check takes place during the decompression process.What should you do?()A.B.C.D.
考题
You work as an application developer at Certkiller .com. You are currently in the process of creating a new application for Certkiller .com. You are required to read compressed data files that has been sent by Certkiller .com‘s sales offices.These data files are less than 4 GB in size, but was compressed without cyclic redundancy. You want to write a method that receives the compressed files and return the uncompressed data as a byte array.What should you do?()A.B.C.D.
考题
You have recently completely creating a new application for Certkiller .com.This new application has to load an instance of the Inventory class from a large file named Inventory.dat.You need to ensure that the application executes the loading process in as little time as possible.What should you do?()A.B.C.D.
考题
在kill(pid,signum)函数中,pid参数表示kill函数发送信号对象的进程号或进程组号。Pid0表示()。A、向进程号为pid值的进程发送信号B、向进程组号为pid绝对值的进程发送信号C、向与发送信号的进程有相同进程组号的进程发送信号D、未定义
考题
You wish to kill a process with a PID of 123. Select the command which exiting.()A、 kill-1 123B、 kill-9 123C、 kill-15 123D、 kill-17 123
考题
How can a Job with EXEC as Internal Status be stopped in the Job Scheduling Console?()A、 select Kill from the menuB、 select Release from the menuC、 select Cancel Job from the menuD、 select Cancel Pending from the menu
考题
You have the Web Server (IIS) role installed on a server that runs Windows Server 2008. You create a Web site named contoso.com. You copy an application named WebContent to the server. You need to enable the WebContent application on the Web site. What should you do?()A、At the command prompt on the server, run the appcmd add site command.B、At the command prompt on the server, run the appcmd add vdir command.C、Select the Web site from the Internet Information Services (IIS) Manager console. Select Add Application.D、Select the Web site from the Internet Information Services (IIS) Manager console. Select Add Virtual Directory.
考题
You work as an administrator at Company.com handling a Windows 200 network.You install an updated device for the removable storage device on your Windows 2000 Professionalcomputer. You restart the computer. During the startup process the computer stops responding.You then restart the computer in safe mode. During the startup process, the computer stops responding again. You want to resolve the problem so that the computer starts successfully. What should you do?()A、 Use the listvc command to disable the removable storage device driver.B、 Use the disable command to disable the removable storage device driver.C、 Select debug mode from the Windows 2000 Advanced Options menu.D、 Select Recovery Console from the Repair menu.E、 Start the computer by using the Windows 2000 Professional CD-ROM.F、 Insert an Emergency Repair Disk.
考题
You work as an application developer at Certkiller .com. Certkiller .com has been contracted to develop an application for the local bank.You have been given the responsibility of creating this application and need to store each transaction record, which is identified using a complex transaction identifier,in memory. The bank informs you that the total amount of transaction records could reach 200 per day. To achieve this, you decide to utilize one of the existing collection classes in the .NET 2.0 class library. You need to ensure that you the collection class you select is the most efficient one for storing transaction records.What should you do?()A、 Select the ListDictionary collection class.B、 Select the HashTable collection class.C、 Select the Queue collection class.D、 Select the StringCollection collection class.
考题
单选题You work as an application developer at Certkiller .com. You have recently created an application that includes the code shown below. public delegate stringGetFileContentsDel (); public string GetFileContents () { //Process file and return results } You now need to invoke the GetFileContents method asynchronously. You have to ensure that the code you use to invoke the GetFileContents method will continue to process other user instructions, and displays the results as soon as the GetFileContents method finishes processing.What should you do?()A
AB
BC
CD
D
考题
单选题How can a Job with EXEC as Internal Status be stopped in the Job Scheduling Console?()A
select Kill from the menuB
select Release from the menuC
select Cancel Job from the menuD
select Cancel Pending from the menu
考题
单选题You are the network administrator for your company. The network consists of a single Active Directory domain named All network servers run Windows Server 2003. Terminal Server is installed on a member server named Server1, which is located in an organization unit (OU) named Servers. User of Server1 report unacceptable response times. To investigate, you start Task Manager on Server1. You discover that the average CPU usage is 80 percent. However, when you select the Processes tab, none of the processes show significant CPU usage. You need to identify the process that is responsible for the CPU usage. What should you do?()A
In Task Manager, select the Show processes from all users option.B
From a command prompt, run the query process command.C
Open the Terminal Services Manager. Select Server1 from the list of servers, and then select the Processes tab.D
Edit the Group policy object (GPO) for the Servers OU by adding your user account to the Profile a single process policy. Then use Task Manager to re-examine Server1.
考题
单选题在kill(pid,signum)函数中,pid参数表示kill函数发送信号对象的进程号或进程组号。Pid0表示()。A
向进程号为pid值的进程发送信号B
向进程组号为pid绝对值的进程发送信号C
向与发送信号的进程有相同进程组号的进程发送信号D
未定义
考题
单选题As an administrator at Cer-tech .com, you install Web server (IIS) role on a server that runs WindowsServer 2008. You created a new site called Cer-tech .com. You need to install an application on thewebsite called web content. You copy the application to the server. What should you do to add theapplication on the website?()A
Create a virtual directory and copy the website contents in it. Copy the application in the directory andinstall itB
Execute appcmd command on the command prompt on the serverC
Open the IIS Manager Console and select the website. Select Add ApplicationD
Execute appcmd -t on the command prompt on the server
考题
单选题You need to select appropriate processing methods for the EmployeeAssignment measure group and the Employee dimension. Which method should you choose?()A
Run a Process Update against the Employee dimension. Run a Process Full against the EmployeeAssignment measure group.B
Run a Process Full against the EmployeeAssignment measure group. Run a Process Update against the Employee dimension.C
Run a Process Full against the Employee dimension. Run a Process Incremental against the EmployeeAssignment measure group.D
Run a Process Incremental against the EmployeeAssignment measure group. Run a Process Full against the Employee dimension.
考题
单选题A highly available WebLogic cluster in UNIX is configured for automatic server migration. Node Managed is configured on both machines to start managed servers. How should you simulate a managed server failure to test whether automatic server migration is working?()A
Shut down the managed server from the WebLogic console.B
Shut down the managed server using the WLST command through Node Manager.C
Run kill -9 once to kill the managed server process.D
Run kill -9 to kill the managed server process, and run kill -9 one more time if the managed server is restarting.
热门标签
最新试卷