|
1. Which UIMPORT file describes how data will be imported? A. Data B. Control C. Form D. Import E. Fields Answer: B 2. A user has received supervisor rights to a server. Trace why? A. Check effective rights root has to server object B. Check effective rights of user’s parent container to the server object Answer : AB 3. Which statement is true? A. Rights for directories and files are the same. B. File system security and NDS Security are dependent upon each other C. NDS regulates who can access files and directories in volumes D. A user does not need file system rights to edit files within the directory as long as the user has the RW NDS object rights Answer: A 4. What are the benefits of the Application Launcher: A. It launches the workstations and prepare it for network use B. It allows the transfer and sharing of information between applications C. It allows for application integration for document management products D. It helps administrators quickly locate and analyze common network problems E. It allows distribution of application to user workstations F. Provides multilevel folder to order application objects in the tree. Answer: E,F 5. What are the features of NDPS. Choose three. A. Integration with NDS B. Network traffic reduction C. Control of NDS print queues D. Automatic detection of new devices E. Replication of files from one server to another Answer: a,b,d 6. Where are salvageable files stored after they have been deleted? A. In the directory from which they were deleted. B. In the volume’s root directory where the directory was deleted. C. In the DELETED.SAV directory in the directory from which they were deleted. D. In the DELETED.SAV directory in the volume’s root directory where the files were deleted Answer: A 7. Z.E.N.works Scheduler is dependent on which component to work properly. A. Remote Control B. Help Requester C. Workstation Manager D. Novell Application Launcher Answer: C 8. Which are examples of leaf objects. Choose three. A. MArmstrong B. Volume ORP-Prod26 C. The country of Italy D. The education department E. The education department’s printer Answer: A, B, E 9. If the Novell licensing service NLM is not currently loaded on the server, which command must you enter at the prompt to install NLS? A. nlslsp B. Setup nls Answer: a 10. Which fields must be provided when creating a user object. A. Password B. Last name C. Login name D. Fax number E. Phone number F. Home directory. Answer: B, C 11. The remote control policy is found in which policy package or packages? A. User policy package B. Container policy package C. Workstation policy package D. User and workstation policy packages E. Workstation and container policy packages Answer: D 12. Which of the following are shortcuts to manage and/or access resources in other containers? a. objects b. files c. properties d. values e. bindery answer: A, C, D 13. In what two ways can volume disk space be restricted? a. by user b. by directory c. by server d. by volume answer: A, B 14. Application Explorer is an alternative to which application launcher component? a. SNAP-IT b. SnAPPShot c. NAL answer: C 15. What kind of alias object can appear under the [ROOT]? a. alias for a user object b. alias for a server object c. alias for an Organizational Unit object d. alias for an Organization object answer: D
|
Question 1.
You use Visual Studio .NET to create a Windows Service application XYZApp. You compile a debug version and install it on your computer, which runs Windows 2000 Server. You start XYZApp from the Windows 2000 Service Control Manager. Now you need to begin debugging it within Visual Studio .NET
What should you do?
A. Add a reference to the application within Visual Studio .NET. Add breakpoints to the code.
Invoke the breakpoints by sending Stop, Pause, and Continue commands from the Service Control Manager.
B. Select Processes from the Debug menu and attach the debugger to XYZApp.
C. Place a breakpoint in the OnStart method of the application and then run it.
D. Place a breakpoint in the Main procedure of the application and then run it.
Answer: B
Explanation:
To debug a service, you must start the service and then attach a debugger to the process in which it is running. We use the Process dialog box to attach to the running service.
The Processes dialog box enables you to view and manipulate programs in a Visual Studio solution.
Using this dialog box, you can debug multiple programs at the same time in a single solution.
Option A:
The service is run with in the context of the Services Control Manager, not within Visual Studio .NET. We cannot debug a process by adding a reference to the process and adding breakpoints.
Option C:
Because the service has already been started, you cannot debug the code in the service's OnStart method.
Option D:
Because the service has already been started, you cannot debug the code in the main procedure of the service.
Reference:
Visual Basic and Visual C# Concepts, Debugging Windows Service Applications
Visual Studio, Processes Dialog Box
Question 2.
You develop a Windows-based application named XYZOrders. You implement the Trace object within your application code. You will use this object to record application information, such as errors and performance data, in a log file.
You must have the ability to enable and disable Trace logging. This functionality must involve the minimum amount of administrative effort.
What should you do?
A. Create a Boolean constant in your application named #TraceLogging and set it to False. Each time your code uses Trace logging, use a #if…#Then statement to evaluate your #TraceLogging constant.
B. On each computer that will host your application, create an environment variable named CustOrders.Trace. Set the environment variable to True when you want to enable Trace logging. Set it to False when you want to disable Trace logging.
C. On each computer that will host your application, edit the shortcut used to start your application. Add /d:TRACE=True to the Target property.
D. Use the TraceSwitch class within your code. Each time your code uses Trace logging, consult the TraceSwitch level to verify whether to log information. Change the TraceSwitch level by editing your applications .config.file.
Answer: D
Question 3.
You are maintaining a Visual Studio .NET application that was created by another developer. The application functions as expected for several months. Then users report that it sometimes calculates tax amounts incorrectly.
An examination of the source code leads you to suspect that the errors are caused by a function named CalculateXYZSales. To test your hypothesis, you place a breakpoint on the following line of code:
decTax = CalculateXYZSales(decRate, decSaleAmount)
However, when you run the application to create a test invoice, the breakpoint is not invoked.
How should you correct this problem?
A. Select Enable All Breakpoints from the Debug menu.
B. Select Configuration Manager from the Build menu.
Set the Activate Solution Configuration option to Debug.
Set the Configuration property of the project to Debug.
C. Select Options from the Tools menu and then select the General object from the Debugging folder.
Choose the option In break mode, only stop execution of the current process.
D. Select Exceptions from the Debug menu.
Under the heading If the exception is not handles, select Break into the Debugger.
Answer: B
Explanation:
If the Active Solution Configuration is set to Release, no Breakpoints would apply. This could cause the behavior described in this scenario. If we should change this setting to Debug the breakpoints would be applied.
Option A:
There is no Enable All Breakpoints command on the Debug menu.
Option C:
The is no option In break mode, only stop execution of the current process, or any other debugging configuration, in the General options.
Option D:
We are not interested in exceptions. We just want to breakpoints to apply.
Reference:
Visual Studio, Configuration Manager Dialog Box
Visual Studio, Exceptions Dialog Box
Question 4.
You company XYZ assigns you to modify a Visual Studio .NET application that was created by a former colleague. However, when you try to build the application, you discover several syntax errors.
You need to correct the syntax errors and compile a debug version of the code so the application can be tested.
Before compiling, you want to locate each syntax error as quickly as possible.
What should you do?
A. Select each error listed in the Task List window.
B. Open the Application event log from the Visual Studio .NET Server Explorer window. Select each error listed.
C. Run the application in Debug mode. Each time an error is encountered, correct it and continue debugging the application.
D. Select Build Solution from the Build menu. When the build fails, correct each error listed in the Output window.
E. Select Build Comment Web Pages from the Tools menu. Select each function listed in the report that is generated.
Answer: A
Explanation:
The task list window contains information which helps you to organize and manage the work of building your application. Among other things it will include each syntax error of the application.
Option B:
Event logs would not contain information on syntactical errors.
Option C:
Syntax errors are corrected in Debug mode.
Option D:
The errors are listed in the Task List windows. The text in the Output windows is more extensive, and the syntax errors are harder to spot.
Option E:
Build Comment Web Pages would not list the syntax errors. It allows you to create a series of .htm pages that display the code structure within projects and solutions, objects and interfaces defined in a project, and members. The .htm pages also display information you have included in your code using the code comment syntax.
Reference:
Visual Studio, Task List Window
Visual Studio, Build Comment Web Pages Dialog Box
Question 5.
You develop a Windows-based time and billing application named XYZBilling. You create a simple user interface to capture user-entered data.
The application passes an Object array of user-entered values to a function named AddUpDataTimeEntry. This function uses the LoadDataRow method of the Data Table object either to update an existing record in the table or to add a new record.
When you test XYZBilling, you frequently receive an exception of type InvalidCastException.
What us the cause of this error?
A. You are trying to load a duplicate value into a Data Table column that has a unique constraint.
B. The number of items in your Object array does not match the number of columns in the Data Table object.
C. The data that you are trying to load into a column is not the correct data type specified for that column.
D. The columns in your Data Table object do not have the AllowDBNull property set to True.
Answer: C
Explanation:
InvalidCastException Class implements the exception that is thrown for invalid casting or explicit conversion. An InvalidCastException could be caused by an incorrect data type.
|
Question 1.
You are a network administrator at ITCertKeys.com. You just used the command line to create a new print spooler called ITCertKeys printer3.
You want to configure this print spooler to allow jobs to enter the queue, but not be sent to the printer associated with the queue.
Which command can you use to accomplish this?
A. reject ITCertKeys printer3
B. enable ITCertKeys printer3
C. accept ITCertKeys printer3
D. disable ITCertKeys printer3
Answer: D
Question 2.
Your boss at ITCertKeys.com is curios about Sun Solaris 9.
Which two are necessary to configure access to a remote printer? Choose two
A.printer name
B.printer location
C.printer content type
D.name of the printer's print server
Answer: A, D
Question 3.
Your boss at ITCertKeys.com is curios about Sun Solaris 9. From which file do the command spkginfoand pkgchkobtain information?
A./var/adm/contents
B./var/adm/pkg/contents
C./var/sadm/pkg/contents
D./var/adm/install/contents
Answer: C
|
dump questions to Oracle9i Introduction to SQL
|
Please provide latest Dumps. Anybody did the exam lately????
|
passed today! I used itcertkeys study guide. Questions are easy, just have ATTENTION that you will pass!!!!!
|
I Pass 70-300, Alpine, Datum & Fabrikam). I use itcertkeys study dumps. Some question (mutiple choice position and DragDrop title changes.
|
Can anybody send me the latest dump to zohaib706@hotmail.com? Thanks!
|
Please provide 513 dump
|
Copyright © 2004 CertsBraindumps.com Inc. All rights reserved.