2014年2月27日星期四

Certification IBM de téléchargement gratuit pratique d'examen LOT-835, questions et réponses

Choisissez le Pass4Test, choisissez le succès de test IBM LOT-835. Bonne chance à vous.

Il y a plusieurs de façons pour réussir le test IBM LOT-835, vous pouvez travailler dur et dépenser beaucoup d'argents, ou vous pouvez travailler plus efficacement avec moins temps dépensés.

Vous avez aussi la possibilité à réussir le test IBM LOT-835. Pass4Test offre la service de la mise à jour gratuite pendant un an. Si vous échouez le test, votre argent sera tout rendu. Maintenant, vous pouvez télécharger la partie gratuite prendre examinser la qualité des produits de Pass4Test.

Code d'Examen: LOT-835
Nom d'Examen: IBM (IBM Lotus Notes Domino 8 Application Dev)
Questions et réponses: 110 Q&As

Dans ce monde d'informatique, l'industrie IT est suivi par de plus en plus de ges. Dans ce domaine demandant beaucoup de techniques, il faut des Certificat à se preuver les techniques professionnelle. Les Certificats IT sont improtant pour un interviewé pendant un entretien. C'est pas facile à passer le test IBM LOT-835, donc c'est pourquoi beaucoup de professionnels qui choisissent ce Certificat pour se preuver.

LOT-835 Démo gratuit à télécharger: http://www.pass4test.fr/LOT-835.html

NO.1 For which one of the following reasons would Richard distribute an encryption key?
A.To allow users to access a locally encrypted database
B.To allow users to read an encrypted field in his Domino application
C.To allow mail recipients who have access to his private key to read e-mails he sends
D.To allow mail recipients who have access to his public key to read the e-mails he sends
Answer:B

IBM   LOT-835 examen   LOT-835   LOT-835   LOT-835 examen

NO.2 Chris has a LotusScript agent with profiling enabled. After the agent has run, where should Chris look
for the profile statistics?
A.In the local Log (log.nsf) database
B.In the agent profile view of the database
C.In Domino Designer, Agent - View Profile Results
D.In the local Statistics And Reporting (statrep.nsf) database
Answer:C

certification IBM   LOT-835   certification LOT-835   certification LOT-835

NO.3 Therese wants to write some LotusScript code that steps through every document in a view and
displays the Title field. She currently has the following code written: Dim session As New NotesSession
Dim db As NotesDatabase Dim view As NotesView Dim doc As NotesDocument Set db =
session.CurrentDatabase Set view = db.GetView( "By Category") Set doc = view.GetFirstDocument Do
Until (doc Is Nothing) Print doc.Title(0) '** MISSING CODE ** Loop What does she need to add on the **
MISSING CODE ** line to make the code work properly?
A.Call view.GetNextDocument()
B.Set doc = view.GetNextDocument()
C.Set doc = view.GetNextDocument(doc)
D.Nothing. The code will work properly as-is.
Answer:C

IBM   LOT-835 examen   LOT-835   certification LOT-835   LOT-835

NO.4 Daniel is designing a Suggestions application and wants to minimize replication conflicts. Which one of
the following will accomplish this?
A.Assign users Editor access to the database. Create a form of type Document and name the form
'Suggestion'. Create a form of type Comment and name the form 'Comments'. Use Authors fields on both
forms.
B.Assign users Author access to the database. Create a form of type Document and name the form
'Suggestion'. Create a form of type Comment and name the form 'Comments'. Use Readers fields on both
forms.
C.Assign users Author access to the database. Create a form of type Document and name the form
'Suggestion'. Create a form of type Response and name the form 'Comments'. Use Authors fields on both
forms.
D.Assign users Editor access to the database. Create a form of type Document and name the form
'Suggestion'. Create a form of type Response and name the form 'Comments'. Use Readers fields on
both forms.
Answer:C

IBM   LOT-835 examen   certification LOT-835

NO.5 What type of element CANNOT be embedded into a page?
A.View
B.Editor
C.Navigator
D.Date picker
Answer:B

IBM examen   certification LOT-835   LOT-835   certification LOT-835

NO.6 Richard's form includes a field that causes a document to be mailed when the document is saved.
Which of the following is the reserved field name that Richard assigned to the field?
A.MailSend
B.ForceMail
C.SaveOptions
D.MailOptions
Answer:D

certification IBM   certification LOT-835   LOT-835 examen   LOT-835   certification LOT-835   LOT-835

NO.7 Jarrod wrote an agent that begins with the following LotusScript code: Dim session As New
NotesSession Dim db As NotesDatabase Dim view As NotesView Dim doc As NotesDocument Set db =
session.CurrentDatabase Set view = db.GetView( "By Category" ) Set doc =
view.GetDocumentByKey( "kitten" ) When the agent runs, which document will be referenced by the "doc"
variable?
A.The first document in the By Category view that contains the word "kitten" in any field
B.The first document in the By Category view that has a value of "kitten" in the first sorted column
C.The first document in the By Category view that has any value in the column with an alias of "kitten"
D.If the database is full-text indexed, the first document in the By Category view that contains the word
"kitten" in any field. If the database is not full-text indexed, the "doc" variable will be empty.
Answer:B

certification IBM   LOT-835   LOT-835 examen   LOT-835

NO.8 Mary has a workflow application that uses a background server agent to route documents to users
listed in a field on each document. Which one of the following conditions would prevent the documents
from being routed by the agent?
A.If an Authors field is blank
B.If a Readers field contains a role
C.If a Readers field contains user names but no server names
D.If an Authors field contains user names but no server names
Answer:C

IBM   certification LOT-835   LOT-835 examen   LOT-835 examen   LOT-835

NO.9 Robert needs to use the "By Last Name" view in his agent. What code snippet will allow him to do this?
A.Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Set db =
session.CurrentDatabase Set view = db.GetView("By Last Name")
B.Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Set db =
session.CurrentDatabase Set view = session.GetView("By Last Name")
C.Dim session As New NotesSession Dim db As New NotesDatabase Dim view As New NotesView Set
db = session.CurrentDatabase Set view = db.GetView("By Last Name")
D.Dim session As New NotesSession Dim db As New NotesDatabase Dim view As New NotesView Set
db = session.CurrentDatabase Set view = session.GetView("By Last Name")
Answer:A

IBM   certification LOT-835   LOT-835 examen

NO.10 Review the following segment of code: list := "John" : "Mary" : "Julio" : "Georgio" : "Samuel"; result :=
@Text( @Compare( list; "M"; [CaseInsensitive])) Which one of the following is the value stored in the
variable "result" after this segment of code runs?
A.1
B.-1
C.A list with the values (1 : 0 : 1 : 1 : -1)
D.A list with the values (-1 : 1 : -1 : -1 : 1)
Answer:D

IBM   LOT-835   LOT-835 examen   LOT-835 examen

NO.11 Sam wants to display a column only if the current user is associated with the [Manager] role.
Otherwise, the column should be hidden. Which one of the following will allow him to do this?
A.Use @IsMember("[Manager]"; @UserRoles) in the hide-when field formula.
B.Use @IsNotMember("[Manager]"; @UserRoles) in the hide-when field formula.
C.Use @IsMember("[Manager]"; @UserRoles) in the hide-when view column formula.
D.Use @IsNotMember("[Manager]"; @UserRoles) in the hide-when view column formula.
Answer:D

IBM   LOT-835   LOT-835 examen   certification LOT-835   LOT-835 examen   certification LOT-835

NO.12 Keiko is designing EmpSurvey.nsf, an employee survey application. The database needs to be able to
receive e-mailed documents. Which one of the following does Keiko need to do?
A.Create a mail-in database document in the Domino Directory.
B.Open the database properties and select Enable as mail-in database.
C.Create MailInDb document in DOMCFG.NSF, being sure to set Mailbox to EmpSurvey.nsf
D.Create a mapping in the Domino Directory to associate EmpSurvey.nsf with a mail server.
Answer:A

IBM examen   LOT-835 examen   certification LOT-835   LOT-835 examen   LOT-835

NO.13 Debbie has a Customer Contact form in her Customer Management form. When users are adding new
information to a document, the response time when moving from field to field is very slow. What should
Debbie do to improve the form performance?
A.Select the "Refresh document on save" option on the Form properties.
B.Deselect the "Recalculate computed fields" option on the Form properties.
C.Deselect the "Automatically Refresh Fields" option on the Form properties.
D.Select the "Refresh fields on keyword changes" option on the Form properties
Answer:C

IBM examen   LOT-835   LOT-835   LOT-835   certification LOT-835   certification LOT-835

NO.14 The Video application has a "Videos by Type" view that categorizes videos by movie type. Jill wants to
create an interface that will allow users to select a movie type and then display a list of video documents
for that movie type. She has created a form with a keyword field that allows users to select a movie type.
How can she display just a list of documents that match the movie type the user picked?
A.Embed the "Videos by Type" view into the form and program the embedded view "Show single
category" option to use the movie type value in the keyword field.
B.Embed the "Videos by Type" view into the form and program the embedded view "Embedded selection"
option to use the movie type value in the keyword field.
C.Create a button on the form that opens the "Video by Type" view and program the "Single Category"
view event to use the movie type value in the keyword field.
D.Create a button on the form that opens a dialog box that opens the "Video by Type" view and program
the "Single Category" view event to use the movie type value in the keyword field.
Answer:A

certification IBM   LOT-835   certification LOT-835   certification LOT-835

NO.15 John is developing an application that will reside on multiple servers. He wants to be able to locate one
particular document across all database replicas. Which one of the following IDs will allow him to locate
that document?
A.DocumentID
B.RecID
C.NoteID
D.UNID
Answer:D

IBM examen   LOT-835 examen   LOT-835   LOT-835

NO.16 The Purchase Requisition workflow application has been very successful. But the categorized view, "By
Status", displays the status categories alphabetically: Approved, Cancelled, Denied, Draft, Submitted. Eva
needs to display the categories in the order of Draft, Submitted, Approved, Denied, Cancelled. How can
she do this?
A.Create a hidden column as the first column. Use the column formula: @If(Status=Draft;10;
Status=Submitted;20; Status=Approved;30; Status=Denied;40;Status=Cancelled;50) Sort the column
ascending.
B.Instead of directly referencing the field, change the Status column to use the formula:
@If(Status="Draft";"10"; Status="Submitted";"20"; Status="Approved";"30";
Status="Denied";"40";"50");Status
C.Create a hidden column as the first column. Use the column formula: @If(Status="Draft";"10";
Status="Submitted";"20"; Status="Approved";"30"; Status="Denied";"40";"50") Sort the column ascending.
D.Instead of directly referencing the field, change the Status column to use the formula:
@If(Status=Draft;"10"; Status=Submitted;"20"; Status=Approved;"30"; Status=Denied;"40";
Status=Cancelled;"50");Status Select the column property "Alias sorting"
Answer:C

IBM   LOT-835 examen   LOT-835 examen   certification LOT-835   LOT-835 examen

NO.17 Briana has created a Shared Column to display the processing status of an order. The target views for
the Shared Column have different font sizes and colors. Can Briana still use a Shared Column in her
views, even if she wants to customize the font that displays the shared column information?
A.No. Shared Column display formats cannot be changed.
B.Yes, by selecting "Use Formula Only" when adding the Shared Column to the view.
C.No, she will have to copy and paste the column into her view if she wants to make customizations. She
can't use it as a Shared Column.
D.Yes. Shared Columns automatically use the format of the previous field column, so she will need to
make sure that the previous column has the font properties she wants.
Answer:B

IBM   certification LOT-835   certification LOT-835   certification LOT-835

NO.18 A button on a Notes document has the following LotusScript code: Dim workspace As New
NotesUIWorkspace Dim uidoc As NotesUIDocument Set uidoc = workspace.CurrentDocument Call
uidoc.GotoField("Status") Print "Approved" Where will the word "Approved" appear after the button is
clicked?
A.In a messagebox
B.On the status bar
C.In the server's log.nsf file
D.In the Status field of the current document
Answer:B

IBM   LOT-835   certification LOT-835

NO.19 Jane wants to be able to change which form is used to display documents in a view. Which one of the
following will allow her to do this?
A.A bookmark property
B.A form field in a form
C.A form formula in a view
D.A computed for display form
Answer:C

certification IBM   LOT-835 examen   certification LOT-835   LOT-835   LOT-835

NO.20 Marie's Windows PC has recently been upgraded to use Notes 8 Standard edition. She is preparing to
develop her first Composite Applications. Marie notices that Eclipse is not listed among the applications
on her PC. What steps should Marie follow so that Eclipse is properly installed and configured for use with
her Notes environment?
A.Run the Notes setup program and enable the options for "Eclipse runtime" and "Eclipse Developer
tools".
B.Marie should back up her files, uninstall Notes, and then install Notes 8 Basic edition. Eclipse will be
integrated automatically.
C.There is nothing Marie needs to do. Eclipse was automatically integrated into her Notes environment
when Notes 8 Standard edition was installed.
D.Marie should back up her files, uninstall Notes, and then install Notes 8 Basic edition. During the install
process, enable the options for "Eclipse runtime" and "Eclipse Developer tools".
Answer:C

IBM   LOT-835 examen   certification LOT-835

NO.21 Armand deleted a subform from a form, forgetting that the subform was used in several other forms.
How did this affect the other forms?
A.The other forms now displayed only the name of the subform, but the underlying data remained intact.
B.The subform design was deleted from the other forms. The fields that had been included on the
subform were now listed on the forms without formatting.
C.The subform on the other forms remained unchanged, and the underlying data remained intact.
D.The subform design was deleted from the other forms, fields from the subform no longer showed, but
the underlying data remained intact.
Answer:C

IBM   certification LOT-835   LOT-835 examen

NO.22 Santi would like to add a column to his view to display the size of documents (including the size of any
attachments) as bytes, kilobytes, or megabytes. How can he do this?
A.Set the Column Value to @AttachmentLengths. Set the column properties to designate "Bytes (K/M/G)"
as the style.
B.Set the Column Value to @AttachmentLengths. Set the column properties to designate Number as the
style, and Bytes (K/M/G) as the number format.
C.Set the Column Value to use the "Size (bytes)" Simple Function. Set the column properties to designate
Number as the style, and Bytes (K/M/G) as the number format.
D.Set the Column Value to use the "Size (bytes)" Simple Function. Set the column properties to designate
Bytes (K/M/G) as the style. Set the Decimal places option to control the desired amount of rounding.
Answer:C

IBM   certification LOT-835   LOT-835   LOT-835 examen   certification LOT-835   LOT-835 examen

NO.23 Ayla has created a DB2 Access View that is working for everyone except one user. This user is listed in
the ACL with settings identical to the users whose access is working. What could be the problem?
A.The DB2NSF.ini file is missing from the user's Notes program folder.
B.The user's Person document in the Domino Directory on the Domino server needs to have the "Allow
access to external data" option enabled.
C.The ACL entry for the user is not identical to the first entry in the "User Name" field in the user's Person
document in the Domino Directory on the Domino server.
D.The user's Notes client has not been enabled for DB2 access. The administrator needs to push a policy
to the user, or the user can select File > Security > User Security, and then enable "Allow access to
external data".
Answer:C

certification IBM   LOT-835 examen   LOT-835   LOT-835

NO.24 There is a table of customer contact data at the top of the SalesOrder form. Omari needs to add a
button to the main view. When the button is clicked, users should see just the customer contact data from
the selected document, without opening the full form. How can Omari do this?
A.Create a CustInfo form, copying the customer data from the main form into a layout region on the new
form. Add a view action with the formula: @DialogBox( "CustInfo"; [NOCANCEL]:[SIZETOLAYOUT];
CustomerName )
B.Create a CustInfo form, copying the table from the main form into this new form. Add a view action
containing the formula: @DialogBox( "CustInfo";
[AUTOHORZFIT]:[AUTOVERTFIT]:[READONLY]:[SIZETOTABLE]; CustomerName )
C.Open the form and highlight the table. From the Form Properties, select "Add header to form" and save
the form. Add a view action with the formula: @DialogBox( CustomerName;
[USEHEADER]:[READONLY]:[SIZETOTABLE]; "SalesOrder" )
D.Open the form and highlight the table. From the Form Properties, select "Add header to form" and save
the form. Add a view action containing the formula: @DialogBox( "SalesOrder";
[USEHEADER]:[READONLY]:[SIZETOTABLE]; CustomerName )
Answer:B

certification IBM   certification LOT-835   LOT-835 examen   LOT-835

NO.25 Stefan has developed a form for the Portfolio database. Each document will include five photos of an
artist's work. Stefan is using a programmable table, with a Rich Text field in each of 5 rows. He has named
the table PictureTable, and the rows are named 1, 2, 3, 4, and 5. The user will select an option from the
ImageNum radio button field below the displayed image to control which image is displayed. What
formula did Stefan use in the Input Translation formula for the ImageNum field?
A.@TableRow( "PictureTable"; Imagenum ); ImageNum
B.FIELD $PictureTable := ImageNum; ImageNum
C.@SetTableRow( "PictureTable"; $Imagenum ); ImageNum
D.FIELD $PictureTable := $ImageNum; ImageNum
Answer:B

certification IBM   LOT-835   LOT-835 examen   LOT-835   certification LOT-835

NO.26 To approve an expense report, Quy goes to a controlled-access section and marks the Status field
"Approved." Status is a sign-enabled field. Which one of the following describes when the signature is
attached?
A.Immediately
B.When the document is saved
C.When the document is mailed
D.When the document is encrypted
Answer:B

IBM examen   LOT-835   LOT-835 examen   LOT-835 examen

NO.27 Viktor supports the Inventory database. He would like to allow users to edit the Quantity field directly in
the In Stock view, without having to open each document. What steps should Viktor follow to implement
this feature?
A.Check "Allow in-view edit" from the Properties box for the Inventory database. Click the onChange
event in the Column objects list in the Programmer's pane, and enter code to control what should happen
when a user edits the Quantity.
B.Check "Editable column" on the Info tab of the Properties box for the Quantity column. Click the
Inviewedit event in the View objects list in the Programmer's pane, and enter code to control what should
happen when a user edits the Quantity.
C.Check "Editable column" on the Info tab of the Properties box for the Quantity column. Click the
Querysave event in the Column objects list in the Programmer's pane, and enter code to control what
should happen when a user edits the Quantity.
D.Check "Allow in-view edit" from the Properties box for the Inventory database. Click the Querysave
event in the View objects list in the Programmer's pane, and enter code to control what should happen
when a user edits the Quantity.
Answer:B

IBM examen   LOT-835   certification LOT-835

NO.28 Jason supports a suite of Notes applications related to the sales process. For a user to see a list of
product alerts pertaining to a given customer's order, the user will currently open a Customer document
from a view, then open an Order document from an embedded view, and then select a line item from the
order and click a button to open a list of any product alerts. How could the user experience change if
Jason were to offer his users a Composite Application?
A.Composite Applications are used to wire Notes and non-Notes applications. Since Jason's applications
are entirely Notes-based, Composite Applications are not applicable.
B.The user could select a Customer in one pane, see a list of orders display in a second pane, and select
an order to see the line items display in a 3rd pane. This could all be in a single context within the Notes
client.
C.The user could hover the mouse over a Customer in one pane, see a list of orders display in a second
pane, and hover the mouse over an order to see the line items display in a 3rd pane. This could all be in a
single context within the Notes client.
D.Composite Applications allow the use of AJAX features for a richer user experience and
subjectively-faster data transfers. Using OnMouseOver and other JavaScript events enables
context-sensitive popup displays. This results in a more Web-like interface from within the Notes client.
Answer:B

IBM examen   LOT-835   LOT-835 examen

NO.29 Donna would like to examine the actual WSDL for the Wiring Properties/Action Definition of her
Composite Application. How can she do this?
A.Open the Domino application using Domino Designer. Select Composite Applications > Wiring
Properties. Double-click on the desired Wiring Properties.
B.Open the Composite Application using Composite Designer. Select Wiring Properties. Select the
desired Wiring Properties and click the Open File button.
C.Open the Domino application using Domino Designer. Select Composite Applications > Wiring
Properties. Select the desired Wiring Properties, and click the Open With... button, and select a text editor
(such as Windows Notepad).
D.Open the Composite Application using Composite Designer. Select Wiring Properties. Select the
desired Wiring Properties and click the Export WSDL button to save the WSDL as an external file. Open
the saved file using a text editor.
Answer:C

IBM examen   LOT-835 examen   LOT-835   LOT-835   certification LOT-835

NO.30 Rita needs to control who can edit a section on her form. The section should be unavailable to
everyone when the document is opened for reading or printing. In which one of the following ways should
Rita design the form?
A.By using a hide-when formula and a read access list
B.By using a collapsible section and a hide-when formula
C.By using expand/collapse rules and an edit access list
D.By using a controlled access section and a hide-when formula
Answer:D

IBM examen   LOT-835 examen   certification LOT-835

Avec l'aide du Pass4Test, vous allez passer le test de Certification IBM LOT-835 plus facilement. Tout d'abord, vous pouvez choisir un outil de traîner de IBM LOT-835, et télécharger les Q&A. Bien que il y en a beaucoup de Q&A pour les tests de Certification IT, les nôtres peuvent vous donner non seulement plus de chances à s'exercer avant le test réel, mais encore vous feront plus confiant à réussir le test. La haute précision des réponses, la grande couverture des documentations, la mise à jour constamment vous assurent à réussir votre test. Vous dépensez moins de temps à préparer le test, mais vous allez obtenir votre certificat plus tôt.

Certification IBM de téléchargement gratuit pratique d'examen LOT-954, questions et réponses

Aujourd'hui, c'est une société pleine de gens talentueux, la meilleure façon de suivre et assurer la place dans votre carrière est de s'améliorer sans arrêt. Si vous n'augmentez pas dans votre carrière, vous êtes juste sous-développé parce que les autres sont meilleurs que vous. Pour éviter ce cas, vous devez vous former successivement.

Si vous traviallez dur encore pour préparer le test de IBM LOT-954 et réaliser votre but plus vite, Pass4Test peut vous donner une solution plus pratique. Choisir la Q&As de Pass4Test qui vous assure que c'est pas un rêve à réussir le test IBM LOT-954.

Être un travailleur IT, est-ce que vous vous souciez encore pour passer le test Certificat IT? Le test examiner les techniques et connaissances professionnelles, donc c'est pas facile à réussir. Pour les candidats qui participent le test à la première fois, une bonne formation est très importante. Pass4Test offre les outils de formation particulier au test et bien proche de test réel, n'hésitez plus d'ajouter la Q&A au panier.

Pass4Test est un site qui peut réalise le rêve de beaucoup de professionnels. Pass4Test peut vous donner un coup de main pour réussir le test Certification IBM LOT-954 via son guide d'étude. Est-ce que vous vous souciez de test Certification IBM LOT-954? Est-ce que vous êtes en cours de penser à chercher quelques Q&As à vous aider? Pass4Test peut résoudre ces problèmes. Les documentations offertes par Pass4Test peuvent vous provider une préparation avant le test plus efficace. Le test de simulation de Pass4Test est presque le même que le test réel. Étudier avec le guide d'étude de Pass4Test, vous pouvez passer le test avec une haute note.

Différentes façons peuvent atteindre le même but, ça dépend laquelle que vous prenez. Beaucoup de gens choisissent le test IBM LOT-954 pour améliorer la vie et la carrière. Mais tous les gens ont déjà participé le test IBM LOT-954, ils savent qu'il est difficile à réussir le test. Il y a quelques dépensent le temps et l'argent, mais ratent finalement.

Au 21er siècle, il manque encore grand nombreux de gens qualifié de IT. Le test Certificat IT est une bonne façon à examiner les hommes de talent. Ce n'est pas un test facile à réussir. Un bon choix de formation est une assurance pour le succès de test. Le test simulation est bien proche que test réel. Vous pouvez réussir 100%, bien que ce soit la première à participer le test.

Code d'Examen: LOT-954
Nom d'Examen: IBM (IBM Lotus Notes Domino 8.5 Developing Web Applications)
Questions et réponses: 187 Q&As

LOT-954 Démo gratuit à télécharger: http://www.pass4test.fr/LOT-954.html

NO.1 Nancy is creating a Web application and she needs anonymous users to be able to read content and
create certain documents. What does Nancy need to do?
A. Anonymous users cannot create documents if the ACL is set to Reader.
B. Anonymous must be set to Author in the ACL and forms must be blocked to Anonymous users.
C. Nancy needs to create an Anonymous entry to the ACL with access set to Author. Then, using
@Formula she needs to validate if a document is being created by an Anonymous user.
D. Nancy needs to create an Anonymous entry to the ACL with access set to Reader and the option "Write
public documents." She also needs to make the forms Available to Public Access users.
Answer: D

IBM   LOT-954 examen   certification LOT-954

NO.2 When the Print statement is used in a Web agent, such as WebQuerySave, what does the Print
statement do?
A. Nothing. The Print statement is ignored in Web agents.
B. Output from all Print statements is sent to the server log.
C. Output from all Print statements is sent to the browser for display.
D. Output from all Print statements is sent to the browser's status bar.
Answer: C

IBM   LOT-954   certification LOT-954   LOT-954

NO.3 Kaitlyn has been asked to track which browser versions people are using to access the Customers
XPage. She wants to add code that writes the browser version to the server log whenever a user opens
the XPage. What server-side code can Kaitlyn add to do this task?
A. Add this code in the beforePageLoad event of the XPage:
var req = facesContext.getExternalContext().getRequest();
print(req.getHeader("User-Agent"));
B. Add this code in the onLoad event of the XPage:
var req = facesContext.getExternalContext().getRequest();
print(req.get(HTTP_USER_AGENT));
C. Add this code in the onLoad event of the XPage:
print(headerValues.getHeader(HTTP_USER_AGENT));
D. Add this code in the beforePageLoad event of the XPage:
print(headerValues.getHeader("User-Agent"));
Answer: A

IBM   LOT-954   certification LOT-954   LOT-954 examen

NO.4 Benjamin is planning to deploy his new application to both Web users and Lotus Notes client users.
He knows that XPages can be used for it. What needs to be considered for this scenario?
A. Nothing, in both clients XPages are working as is.
B. He needs to design the XPages in pairs, one set for Lotus Notes clients and one set for the Web.
C. This task is not possible. XPages are not working the same in Lotus Notes clients and the Web
browser.
D. He can design his application using only one set of XPages, but he has to adapt most of the pages to
the client in use by using conditional constructs.
Answer: A

IBM examen   LOT-954   certification LOT-954   certification LOT-954   certification LOT-954   LOT-954

NO.5 Kimberly has added a submit button to her XPage. Before the document is saved, she wants to make
sure that the user actually wants to save the document. What should she do to accomplish this task?
A. Add a Save Document core control to the form.
B. Add a Confirm Action core control to the form.
C. Add a Confirm Action simple action on the button onclick event.
D. Add a Save Document simple action to the button onclick event.
Answer: C

certification IBM   LOT-954 examen   LOT-954   LOT-954 examen   LOT-954   LOT-954 examen

NO.6 A WSDL file is used by a Web service consumer to do what?
A. Determine the type of authentication used to access a Web service
B. Determine the methods available and endpoints used by a Web service provider
C. Locate one or more Web service providers that can provide a certain type of data
D. Transform an outgoing SOAP message into the proper format for the Web service provider using XSLT
Answer: B

IBM   LOT-954   certification LOT-954

NO.7 Emil has a data table in his XPage. He has identified the data table's data source as a particular
Domino View Data Source. He has also inserted the columns he needs. How can he assign each column
to a matching column from the Domino View?
A. Drag a View control onto the data table and define its columns.
B. Select the data table and define its data binding to include all of the View's columns, in the appropriate
order.
C. Right-click each column, select "Data Binding" from the context menu, and identify the appropriate
column in the Domino View.
D. Drag the appropriate controls from the Controls View onto the columns in the data table and define
their data bindings to the individual columns in the Domino View.
Answer: D

IBM   LOT-954   certification LOT-954   LOT-954   LOT-954   LOT-954

NO.8 Farah has added the main.css stylesheet to her XPage. She wants to associate the helpText class
from main.css with the lblHelp Label control on the page. How can Farah do this task?
A. Select the Source tab from the Xpage canvas and enter this line: <xp:lblHelp
class="helpText"></xp:lblHelp>
B. Right-click lblHelp from the XPage. On the HTML tab of the Properties window, enter helpText for the
Class option.
C. Select the lblHelp control on the Xpage. From the Style tab of the Properties window, enter helpText for
the Class option.
D. Select the Source tab from the Xpage canvas. Locate the <xp:styleSheet href="/main.css"> line. Below
this line, add: <xp:lblHelp styleClass="helpText"></xp:lblHelp>
Answer: C

certification IBM   certification LOT-954   certification LOT-954   LOT-954 examen   LOT-954 examen

NO.9 Adrian has created his first XPages application. When he moved the application from the
development server to the production server, he noticed the xPages are not being rendered. What's the
problem?
A. The production server is not running HTTP.
B. XPages are encrypted with the server ID.
C. Adrian needs to edit the XPages to enter the new server name.
D. Adrian needs to make sure that the XPages have been signed with an ID that has authorization to run
XPages.
Answer: D

certification IBM   LOT-954   LOT-954

NO.10 Luis needs to create a Web application but he needs to show two views, two pages, and one outline
all at the same time at some points. How can he accomplish this requirement?
A. Using framesets
B. With HTML by using multiple div tags
C. With HTML by using multiple iFrame tags
D. With a combination of JavaScript and DHTML
Answer: A

IBM   certification LOT-954   LOT-954

NO.11 Benjamin wants to apply his CSS to the Checkout XPage. What can he use to apply that design
element to his XPage?
A. Files design element
B. Style Sheets design element
C. Custom Controls design element
D. CSS Core Control design element
Answer: B

IBM examen   LOT-954   LOT-954   certification LOT-954

NO.12 Daniel has an XPage design element that shows a view. The view has hundreds of entries, ten of
which display at one time. What core control can Daniel add to the XPage to allow the user to navigate
through the view?
A. View control
B. Pager control
C. Repeat control
D. Navigator control
Answer: B

IBM   LOT-954   LOT-954 examen   LOT-954 examen

NO.13 Zach needs to ensure that every XPage in the Products application includes a copyright line. This text
should display identically at the bottom of every XPage. How can Zach accomplish this task?
A. Right-click Custom Controls from the applications navigator and select New Custom Control. Supply
the text and formatting. Drag this control from the Controls palette onto the bottom of each XPage.
B. Double-click Applications Properties from the applications navigator. In the Header and Footer section
of the XPages tab, enter the text in the Footer Text field. Select the options for font, color, and justification.
C. Create a page to hold the content. Right-click Custom Controls from the applications navigator and
select New Custom Control. Supply the name of the page for the Source property. Drag this control from
the Controls palette onto the bottom of each XPage.
D. Create a subform to hold the content. Right-click Custom Controls from the applications navigator and
select New Custom Control. Supply the name of the subform for the Source property. Drag this control
from the Controls palette onto the bottom of each XPage.
Answer: A

IBM   LOT-954   certification LOT-954

NO.14 Juanes needs to import some data from a custom application not using a standard database engine,
which is being migrated to a Lotus Notes/Domino application. How can he accomplish this task?
A. Use Lotus Enterprise Integrator.
B. Import data using one of the built-in connection services like DECS or connectors.
C. Export the data to XML on the old application and import it using XMLT.
D. Export the data from the old application to one or more ASCII files and import them by using
LotusScript file access methods.
Answer: D

IBM   LOT-954 examen   LOT-954 examen   LOT-954 examen

NO.15 Lainey has recently upgraded to Lotus Notes Domino 8.5. She is now exploring the design of her
applications to see what new features might be available. What is the purpose of the controls palette that
Lainey sees?
A. The controls palette contains controls, such as Edit Box, File Upload, and Table that the developer can
drag onto the XPage canvas.
B. The controls palette is another way to access the same items that are available from the Create menu
for forms, views, XPages and other design elements.
C. The controls palette contains items like Edit Box, Button, and Label that the developer can drag onto
XPages and forms. The controls palette is not available for views and pages.
D. The controls palette contains UI and other controls (such as Button, Link, and Image) that allow the
developer to drag controls onto XPage or page elements. The controls palette is not available for other
elements.
Answer: A

IBM examen   LOT-954 examen   LOT-954   certification LOT-954

NO.16 Cade is building an XPage for the Sales application. What are the options from which he can select
when defining a data source from the data palette?
A. @DbLookup and @DbColumn
B. Domino view and Domino document
C. Data connections and DB2?access views
D. Data connections, DB2 access views, and file resources
Answer: B

IBM   LOT-954 examen   LOT-954

NO.17 What does @URLEncode do?
A. Launches a URL
B. Encrypts a URL
C. Ensures that a URL is SSL-enabled
D. Encodes a string into a URL-safe format
Answer: D

IBM   LOT-954 examen   LOT-954   LOT-954   LOT-954

NO.18 The DiscussionTopics XPage includes a button to take users to the Feedback XPage. Ted has created
the Feedback XPage. He now wants to add a Save and close button that saves the user's input, and take
the user back to the DiscussionTopics XPage. What is one way that he can do this task?
A. Drag a new Button control onto the XPage canvas. Set the button type to Submit. For the onclick event,
add the following server-side JavaScript: Feedback.save();
B. Drag a new Button control onto the XPage canvas. Set the button type to Submit. For the onclick event,
add the following server-side JavaScript: Feedback.save(); context.getUrl("..");
C. Drag a new Button control onto the XPage canvas. Leave the button type as Button. For the onclick
event, add a simple action selecting Save Document. Specify DiscussionTopics as the argument.
D. Drag a new Button control onto the XPage canvas. Leave the button type as Button. For the onclick
event, add a simple action selecting Save Data Sources. Specify DiscussionTopics as the argument.
Answer: D

IBM   certification LOT-954   certification LOT-954

NO.19 Maggie wants to display the authenticated user's name on her Web site's welcome page. How can she
do this task?
A. Use the JavaScript document.userName property.
B. Display the name using the USER_NAME CGI field.
C. Write a JavaScript function that gets the name from the session cookie.
D. Create computed text on the page that computes the current user's name.
Answer: D

IBM   certification LOT-954   certification LOT-954   LOT-954 examen

NO.20 Mary has created her first xPages application for Web users that shows customers' phone numbers.
She now needs the application to be available for the lotus Notes client. Does she need to rewrite the
application?
A. Yes, xPages cannot be used in a Lotus Notes client.
B. No, xPages are supported in the Lotus Notes client.
C. Yes, the same application cannot be used via Web and Lotus Notes client at the same time.
D. No, but she needs to create xPages to be used specifically by the Lotus Notes client.
Answer: B

IBM   LOT-954   LOT-954   LOT-954 examen   LOT-954

NO.21 Steven uses profile documents to give people the ability to personalize the look and feel of his
application on the Web. How can he read an individual background color value from users' profile
documents using JavaScript?
A. var profDoc:NotesDocument = database.getProfile("UserProfile",username);
return profDoc.getItem("BackgroundColor")[0];
B. var profDoc:NotesDocument = database.getProfileDocument("UserProfile",username);
return profDoc.getItem("BackgroundColor")[0];
C. var profDoc:NotesDocument = database.getProfile("UserProfile",username);
return profDoc.getItemValue("BackgroundColor")[0];
D. var profDoc:NotesDocument = database.getProfileDocument("UserProfile",username);
return profDoc.getItemValue("BackgroundColor")[0];
Answer: D

certification IBM   LOT-954 examen   certification LOT-954   LOT-954   certification LOT-954   LOT-954 examen

NO.22 Which one of the following @formulas can be used to read data from a non-Lotus Domino server in a
Web application?
A. @DbCommand and @DBColumn
B. @ServerAccess and @UserAccess
C. @ConnectToServer and @Retrieve
D. This task cannot be performed with an @formula.
Answer: A

IBM   LOT-954   certification LOT-954

NO.23 Using a web browser, Marc is accessing Lotus Domino sites, but does not log in. Which ACL setting
would allow him to access the databases?
A. The $$WebUser role is set to Reader.
B. The $$WebUser user is set to Reader.
C. The Anonymous role is set to Reader.
D. The Anonymous user is set to Reader.
Answer: D

IBM examen   LOT-954 examen   LOT-954   certification LOT-954   LOT-954 examen

NO.24 Nadine has discovered that XPages dynamically generate names of UI elements. She therefore
cannot know ahead of time what an element's name will be when it is passed to the Web browser. What
function can Nadine use in her server-side JavaScript to fetch the generated element ID at runtime?
A. getClientId
B. getXpageElementId
C. toString(elementId())
D. toString(getElementId())
Answer: A

IBM   certification LOT-954   LOT-954   certification LOT-954   LOT-954   LOT-954

NO.25 Hadi is creating a new XPage. His XPage design now shows the company logo and banner. How can
Hadi now add fields to the XPage?
A. Right-click where each field should be placed and select Insert > Field and select the type of field (such
as Edit Box, Check Box, Radio Button, and so on).
B. For each field, drag the associated type of control (such as Edit Box, Check Box, Radio Button, and so
on) from the Core Controls to the XPage design.
C. For each field, drag the associated type of control (such sa Edit Box, Check Box, Radio Button, and so
on) from under XPages on the Applications panel to the XPage design.
D. On the XPage design, click and drag to draw a box to create each field. As the mouse button is
released for each field box, select the type of control to associate with the field (such as Edit Box, Check
Box, Radio Button, and so on).
Answer: B

IBM examen   LOT-954   certification LOT-954   LOT-954 examen

NO.26 Pablo has created an XPage to use for browsing and editing customer data. He would like to add a
button that asks users if they are sure that they want to update the customer data. The button saves the
changes if users indicate that they are sure. How can Pablo create this button?
A. Drag a button control from the core controls onto the XPage canvas. From the Control properties,
select Save as the button type, and enable the Confirm option.
B. Drag a button control from the core controls onto the XPage canvas. From the Control properties,
select Save as the button type. A confirmation prompt is included by default.
C. Drag a button control from the core controls onto the XPage canvas. From the Control properties,
select Submit as the button type. From the events panel, add a server-side simple action. Select Confirm
Action for the action.
D. Drag a button control from the core controls onto the XPage canvas. From the Control properties,
select Submit as the button type. From the events panel, add a client-side simple action. Select Confirm
Action for the action.
Answer: C

certification IBM   LOT-954 examen   LOT-954 examen   LOT-954 examen   LOT-954 examen   LOT-954

NO.27 Ida has developed the needed functionality in the Customers XPage of her application. The Web
design team has provided her with the internal.css stylesheet. After Ida imports the stylesheet to her
application, how can she add the stylesheet to the XPage?
A. Open the XPage in Lotus Domino Designer. From the Style tab of the Properties view, click "Add style
sheet to page" and select internal.css.
B. Open the XPage in Lotus Domino Designer. Right-click an open area of the XPage and open the
Properties window. Select internal.css for the Style Sheet option.
C. From the Applications view, select Resources > Style Sheets > internal.css. From the Wiring tab of the
Properties view, click "Add" and select XPage > Customers.
D. From the Applications view, double-click to open the internal.css style sheet. From the Associations tab
of the Properties view, click "Add association" and select XPage > Customers.
Answer: A

IBM   LOT-954   LOT-954   LOT-954 examen   LOT-954

NO.28 Qiang needs to add a button to the Contact XPage. When clicked, this button should delete the
currently open document from the application. What is one way that Qiang can add this button?
A. Drag the Data control from the core controls onto the XPage canvas. From the Control properties, set
the Label to Delete. On the Operations tab, select Current document and Delete.
B. Drag the Data control from the core controls onto the XPage canvas. From the Control properties, set
the Label to Delete. In the Options area of the properties, select Delete for the Action, and select Domino
Document for the Target.
C. Drag a Button control from the core controls onto the XPage canvas. From the Control properties, set
the Label to Delete. On the events panel, select the Mouse onclick event, and add a server-side simple
action. Select Delete for the action.
D. Drag a Button control from the core controls onto the XPage canvas. From the Control properties, set
the Label to Delete. On the events panel, select the Mouse onclick event, and add a client-side simple
action. Select Delete for the action.
Answer: C

IBM   LOT-954 examen   LOT-954   certification LOT-954

NO.29 From the menu bar of Lotus Domino Designer, Pieter clicked Create > Design > Custom Control. He
created an element that he named PageBanner. How can Pieter now add PageBanner to his XPage?
A. From the Controls view, expand Custom Controls if it is collapsed. Drag PageBanner onto the desired
location on the XPage canvas.
B. From the applications navigator, expand the Custom Controls section if it is collapsed. Drag
PageBanner to the desired location on the XPage canvas.
C. Position the cursor at the desired location on the XPage canvas. Right-click and select Insert > Shared
Element > Control > Custom Control > Page Banner.
D. Position the cursor at the desired location on the XPage canvas. Select Create > Resource > Insert
Resource. Select "Custom Controls" for the Resource type and select PageBanner.
Answer: A

IBM   certification LOT-954   LOT-954 examen   LOT-954

NO.30 Marge wants to track user preference information while users navigate through her Web site, but does
not want to require users to authenticate when accessing the site. Which of the following should she use
to track the user information?
A. Cookies
B. Servlets
C. User profile documents
D. The users must authenticate
Answer: A

certification IBM   certification LOT-954   LOT-954   LOT-954 examen

Maintenant, beaucoup de professionnels IT prennent un même point de vue que le test IBM LOT-954 est le tremplin à surmonter la pointe de l'Industrie IT. Beaucoup de professionnels IT mettent les yeux au test Certification IBM LOT-954.

2014年2月26日星期三

Guide de formation plus récente de Symantec 250-250

Les produits de Pass4Test sont recherchés par les experts de Pass4Test qui se profitent de leurs connaissances et leurs expériences dans l'Idustrie IT. Si vous allez participer le test Symantec 250-250, vous devez choisir Pass4Test. La Q&A de Pass4Test peut vous aider à préparer mieux le test Symantec 250-250 avec sa grande couiverture des questions. En face d'un test très difficile, vous pouvez obtenir le Certificat Symantec 250-250 sans aucune doute.

Pass4Test est un site à offrir particulièrement la Q&A Symantec 250-250, vous pouvez non seulement aprrendre plus de connaissances professionnelles, et encore obtenir le Passport de Certification Symantec 250-250, et trouver un meilleur travail plus tard. Les documentations offertes par Pass4Test sont tout étudiés par les experts de Pass4Test en profitant leurs connaissances et expériences, ces Q&As sont impresionnées par une bonne qualité. Il ne faut que choisir Pass4Test, vous pouvez non seulement passer le test Symantec 250-250 et même se renforcer vos connaissances professionnelles IT.

Le Pass4Past possède une équipe d'élite qui peut vous offrir à temps les matériaux de test Certification Symantec 250-250. En même temps, nos experts font l'accent à mettre rapidement à jour les Questions de test Certification IT. L'important est que Pass4Test a une très bonne réputation dans l'industrie IT. Bien que l'on n'ait pas beaucoup de chances à réussir le test de 250-250, Pass4Test vous assure à passer ce test par une fois grâce à nos documentations avec une bonne précision et une grande couverture.

Code d'Examen: 250-250
Nom d'Examen: Symantec (Administration of Staorage Foundation 5.0 for UNIX)
Questions et réponses: 199 Q&As

Est-ce que vous vous souciez encore pour passer le test Symantec 250-250? Pourquoi pas choisir la formation en Internet dans une société de l'informatique. Un bon choix de l'outil formation peut résoudre le problème de prendre grande quantité de connaissances demandées par le test Symantec 250-250, et vous permet de préparer mieux avant le test. Les experts de Pass4Test travaillent avec tous efforts à produire une bonne Q&A ciblée au test Symantec 250-250. La Q&A est un bon choix pour vous. Vous pouvez télécharger le démo grantuit tout d'abord en Internet.

But que Pass4Test n'offre que les produits de qualité est pour vous aider à réussir le test Symantec 250-250 100%. Le test simulation offert par Pass4Test est bien proche de test réel. Si vous ne pouvez pas passer le test Symantec 250-250, votre argent sera tout rendu.

Pass4Test est un seul site de provider le guide d'étude Symantec 250-250 de qualité. Peut-être que vous voyiez aussi les Q&A Symantec 250-250 dans autres sites, mais vous allez découvrir laquelle est plus complète. En fait, Pass4Test est aussi une resource de Q&A pour les autres site web.

250-250 Démo gratuit à télécharger: http://www.pass4test.fr/250-250.html

NO.1 Which command is used to change the stripe unit size and number of columns for the datavol
volume in the datadg disk group?
A.vxvol datadg convert datavol stripeunit=32k ncol=5
B.vxassist datadg convert datavol stripeunit=32k ncol=5
C.vxvol datadg relayout datavol stripeunit=32k ncol=5
D.vxassist datadg relayout datavol stripeunit=32k ncol=5
Correct:D

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.2 Which command displays the number of paths to the datadg01 disk?
A.vxdisk list datadg01
B.vxdg list datadg01
C.vxpath list datadg01
D.vxdmpadm list datadg01
Correct:A

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.3 Which commands display plex, volume, and kernel states? (Choose two.)
A.vxcat
B.vxdisplay
C.vxinfo
D.vxprint
E.vxstate
Correct:C D

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.4 What are valid mount options for a Veritas file system? (Choose two.)
A.nolargefiles
B.shared
C.logtmp
D.delaylog
E.logdelay
Correct:A D

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.5 Which command upgrades the datadg disk group from version 50 to the current disk group
version?
A.vxdg -T 50 upgrade datadg
B.vxdg upgrade datadg
C.vxdg currvers datadg
D.vxdg 50 currvers datadg
Correct:B

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.6 Which command removes the datadg02 disk from the datadg disk group?
A.vxassist datadg rmdisk datadg02
B.vxdg datadg rmdisk datadg02
C.vxassist datadg remove disk datadg02
D.vxdg datadg remove datadg02
Correct:B

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.7 Which statements are true about renaming the disk object? (Choose two.)
A.New disk names must be unique within the disk group.
B.All subdisks will be renamed together with the disk.
C.The disk group needs to be offline.
D.The new disk name must be unique within the system.
E.Subdisks names will remain the same.
Correct:A E

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.8 Which command displays the amount of free space in the configuration database of the datadg
disk group?
A.vxdg -g datadg free
B.vxdg -g datadg list
C.vxdg free datadg
D.vxdg list datadg
Correct:D

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.9 Which vxassist parameter is used to set the number of data plexes in a non-layered mirrored
volume?
A.nplex
B.numplex
C.nummirror
D.nmirror
Correct:D

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.10 What occurs when you add an initialized disk to an existing disk group? (Choose two.)
A.The public and private regions are created on the disk.
B.An empty volume is created on the disk by default.
C.The disk group configuration database is updated.
D.Volume Manager performs a rescan to recognize all newly configured disks.
E.The disk is stamped with the system host ID.
Correct:C E

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.11 Which statement is true about adding a mirror to an existing striped volume?
A.A concatenated plex is added to the volume by default.
B.You can use any disks in the disk group to contain the new plex.
C.Synchronization of the new plex is required.
D.You should add the new plex to a different disk group for redundancy.
Correct:C

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.12 Which vxsnap command option recreates a space-optimized instant snapshot?
A.restore
B.reattach
C.refresh
D.reassociate
Correct:C

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.13 Which states are displayed in the output of vxprint? (Choose two.)
A.Data
B.Kernel
C.File System
D.Volume
E.User
Correct:B D

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.14 Which statements are true about deporting a disk group? (Choose two.)
A.The volumes are unavailable.
B.The disk group is available for importing.
C.The disk group is deported and online.
D.The file systems are destroyed.
E.The file systems are accessible.
Correct:A B

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.15 The upgrade scripts are being used to upgrade Volume Manager. Which file's existence would
indicate that the upgrade_start script had been run, but the upgrade_finish has yet to be run?
A./UPGRADE_START/.start_runed
B./VXVM5.0-UPGRADE/.start_runed
C./etc/vx/.start_runed
D./etc/vx/.upgrade_runed
Correct:B

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.16 When creating a new volume with the New Volume Wizard in VEA, which layout options are
available to create a layered volume? (Choose two.)
A.concatenate-mirror
B.stripe-mirror
C.mirror-stripe
D.mirror-concatenate
E.concatenate-stripe
F.stripe-concatenate
Correct:A B

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.17 Which command grows the datavol volume by an additional 30 MB and resizes the file system at
the same time?
A.vxassist -g datadg growby datavol 30m
B.vxresize -g datadg datavol 30m
C.vxresize -g datadg datavol +30m
D.vxassist -g datadg growto datavol 30m
Correct:C

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.18 Which command can be used to remove a mirror from a volume? (Choose two.)
A.vxedit
B.vxassist
C.vxremove
D.vxevac
E.vxmirror
Correct:A B

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.19 After initializing a disk for use in Volume Manager, which command is used to create a disk
group named datadg on a device shown as device_tag and using a disk media name of datadg01?
A.vxassist create datadg datadg01=device_tag
B.vxdg create datadg datadg01=device_tag
C.vxdg init datadg datadg01=device_tag
D.vxassist datadg init datadg01= device_tag
Correct:C

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

NO.20 In the output of the vxdisk list command, there are no entries in the DISK and GROUP columns.
However, you see online invalid in the output of the STATUS column. What does the online invalid
status indicate?
A.The disk is failing and needs to be replaced for future use in Volume Manager.
B.The disk is incompatible with the current release of Volume Manager.
C.The disk is available for initialization or encapsulation by Volume Manager.
D.The disk is available for use and has encapsulated data deported on another system.
Correct:C

certification Symantec   certification 250-250   250-250   250-250 examen   certification 250-250   250-250 examen

Différentes façons peuvent atteindre le même but, ça dépend laquelle que vous prenez. Beaucoup de gens choisissent le test Symantec 250-250 pour améliorer la vie et la carrière. Mais tous les gens ont déjà participé le test Symantec 250-250, ils savent qu'il est difficile à réussir le test. Il y a quelques dépensent le temps et l'argent, mais ratent finalement.

Le dernier examen Symantec ST0-47W gratuit Télécharger

Au 21er siècle, il manque encore grand nombreux de gens qualifié de IT. Le test Certificat IT est une bonne façon à examiner les hommes de talent. Ce n'est pas un test facile à réussir. Un bon choix de formation est une assurance pour le succès de test. Le test simulation est bien proche que test réel. Vous pouvez réussir 100%, bien que ce soit la première à participer le test.

Le test simulation offert par Pass4Test est bien proche du test réel. Vous pouvez apprendre tous essences d'un test réel à courte terme avec l'aide de Pass4Test. Pass4Test peut vous assurer le succès 100% de test Symantec ST0-47W.

Code d'Examen: ST0-47W
Nom d'Examen: Symantec (Veritas NetBackup 6.5 for Windows (STS))
Questions et réponses: 115 Q&As

Passer le test Symantec ST0-47W, obtenir le Passport peut améliorer la perspective de votre carrière et vous apporter plus de chances à développer votre boulot. Pass4Test est un site très convenable pour les candidats de test Certification Symantec ST0-47W. Ce site peut offrir les informations plus nouvelles et aussi provider les bonnes chances à se former davantage. Ce sont les points essentiels pour votre succès de test Certification Symantec ST0-47W.

Selon les feedbacks offerts par les candidats, c'est facile à réussir le test Symantec ST0-47W avec l'aide de la Q&A de Pass4Test qui est recherché particulièrement pour le test Certification Symantec ST0-47W. C'est une bonne preuve que notre produit est bien effective. Le produit de Pass4Test peut vous aider à renforcer les connaissances demandées par le test Symantec ST0-47W, vous aurez une meilleure préparation avec l'aide de Pass4Test.

ST0-47W Démo gratuit à télécharger: http://www.pass4test.fr/ST0-47W.html

NO.1 What is the purpose of the nbproxy process?
A. It facilitates communication between the Master Server and the client.
B. It provides communication between multi-threaded processes and PBX.
C. It facilitates communication between the Master Server and the Media Server.
D. It provides communication between multi-threaded processes and single-threaded processes.
Answer: D

Symantec   ST0-47W   ST0-47W

NO.2 An administrator wants to use the capacity-based licensing model. There are 50 clients, each with
50Gb of data that must be backed up. Ten of the clients are database servers.
What is the correct specification for determining the license configuration?
A. 5 Front End Terabytes, 40 Client Licenses, 10 Application and Database Packs
B. 1 Enterprise Server, 40 Client Licenses, 10 Application and Database Packs
C. 2.5 Front End Terabytes, 50 Client Licenses, 10 Application and Database Packs
D. 5 Back End Terabytes, 50 Client Licenses, 10 Application and Database Packs
Answer: C

Symantec   ST0-47W examen   certification ST0-47W   certification ST0-47W

NO.3 A Veritas NetBackup 6.5 client system requests a user-initiated backup by sending a request to port
13720 of the configured Master Server system.
Which Veritas NetBackup service or process receives this request?
A. bpdbm
B. bprd
C. nbpem
D. nbjm
Answer: B

certification Symantec   ST0-47W   certification ST0-47W   ST0-47W

NO.4 What are three options for locating and viewing Veritas NetBackup 6.5 manuals and other
documentation? (Select three.)
A. NetBackup 6.5 media set (the CD-ROMs and/or DVD-ROMs)
B. documentation files in /opt/openv/goodies/hlp (UNIX/Linux)
C. hard copy documentation provided with NetBackup 6.5
D. online on the Symantec Corporation Support website
E. help files in C:\Program Files\Veritas\NetBackup\goodies\help (Windows)
Answer: ACD

Symantec examen   ST0-47W   certification ST0-47W

NO.5 Which two disk-based features support data de-duplication? (Select two.)
A. SAN Disk
B. Flexible Disk
C. OpenStorage Disk
D. PureDisk Storage
Answer: CD

Symantec examen   ST0-47W   certification ST0-47W   certification ST0-47W   ST0-47W

NO.6 In Veritas NetBackup 6.5, what is a backup policy?
A. a set of associations defining which Backup Creation Wizard will run with which clients
B. a schedule defining when a given backup will execute its full or incremental sessions
C. a list of parameters that define the details of how a given backup will be performed
D. a list of clients to be backed up and how long the backup can run
Answer: C

certification Symantec   certification ST0-47W   ST0-47W   ST0-47W examen   certification ST0-47W

NO.7 Which three features are included in the Standard Infrastructure capacity tier? (Select three.)
A. Library Based Tape Drive
B. OpenStorage Option
C. Vault Option
D. Shared Storage Option
E. Flexible Disk Option
Answer: ACD

Symantec   ST0-47W   ST0-47W   ST0-47W examen   ST0-47W examen

NO.8 Which feature of Veritas NetBackup 6.5 allows backup data to be encrypted at no additional cost?
A. Media Server Encryption
B. NDMP Encryption
C. Client Encryption
D. EMM Server Encryption
Answer: C

Symantec   ST0-47W   ST0-47W   ST0-47W

NO.9 On which two types of Veritas NetBackup 6.5 servers can the Enterprise Media Manager (EMM) be
installed? (Select two.)
A. Master Server
B. Media Server
C. Administration Server
D. Media and Device Server
Answer: AB

certification Symantec   ST0-47W   certification ST0-47W   ST0-47W   ST0-47W

NO.10 A Veritas NetBackup 6.5 environment uses a multi-tiered architecture.
Which system functions as the first tier?
A. Media Server
B. NetBackup Operations Manager (NOM) Server
C. Enterprise Client
D. Master Server
Answer: D

Symantec   certification ST0-47W   ST0-47W   ST0-47W examen

NO.11 Which two components/options of Veritas NetBackup 6.5 include the Bare Metal Restore (BMR) Client?
(Select two.)
A. Standard Client
B. Bare Metal Restore Client
C. Enterprise Client
D. Desktop and Laptop Client
E. Database and Application Pack
Answer: AC

certification Symantec   certification ST0-47W   certification ST0-47W   ST0-47W

NO.12 Which statement is true about Veritas NetBackup 6.5 Data Classifications?
A. They control the execution of backups.
B. They schedule client backups.
C. They can be used to bias the deletion of backup images.
D. They are service level agreements.
Answer: C

Symantec   ST0-47W examen   ST0-47W examen   ST0-47W examen

NO.13 What is OpenStorage?
A. the new Symantec physical disk array
B. the software layer that interfaces with any type of disk
C. the Veritas NetBackup 6.5 service that manages disks
D. a new term for a Veritas NetBackup 6.5 Disk Storage Unit
Answer: B

Symantec examen   ST0-47W   ST0-47W examen   ST0-47W

NO.14 An environment already has two robots configured, and the NetBackup Administration Console is being
used to configure a new IBM TLD-type robot. Which name is given to the new robot by default?
A. TLD(2)
B. ROBOT_3
C. TLD(3)
D. IBM.TLD.3
Answer: A

Symantec   ST0-47W examen   ST0-47W examen   ST0-47W examen   ST0-47W examen

NO.15 Where can you find and access a full list of Veritas NetBackup 6.5 product documentation?
A. under the Help tab in any window of the NetBackup NOM console
B. in the Help (Windows) or hlp (UNIX/Linux) directories on the Master Server
C. online on the Symantec Corporation Support website
D. on any host that has NetBackup component(s) loaded, through the global Help function
Answer: C

Symantec   ST0-47W   certification ST0-47W   ST0-47W

NO.16 Which two cause the Policy Execution Manager to modify the Next Due Jobs worklist? (Select two.)
A. when Enterprise Media Manager initiates a request to modify the worklist
B. when a backup policy is added, modified, or removed
C. when a job is initiated and completed
D. when a user initiated backup is requested
Answer: BC

certification Symantec   certification ST0-47W   ST0-47W   ST0-47W examen

NO.17 The customer runs the Images on Media report to obtain a list of backup images that are on the tape
volume XYZ001.
Which NetBackup Master Server service/process maintains the catalog from which this report is derived?
A. NetBackup Jobs Database Manager
B. NetBackup Service Layer
C. NetBackup Job Manager
D. NetBackup Database Manager
Answer: D

certification Symantec   ST0-47W examen   ST0-47W examen

NO.18 Which two are internal databases used by Veritas NetBackup 6.5? (Select two.)
A. NDMP File database
B. Image database
C. Topology database
D. EMM database
E. Encrypted Media database
Answer: BD

Symantec   ST0-47W   certification ST0-47W   ST0-47W   ST0-47W

NO.19 In a customer's Veritas NetBackup 6.5 environment, the Master Server is host A, the Enterprise Media
Manager (EMM) Server is host B, the only configured Media Server is host C, and Client systems are host
D through host Z. The customer has encountered a problem performing a standard restore operation of
host D from the tape on which the backup was written and was directed by Symantec support to enable
debug logging for the bpbrm process.
On which Veritas NetBackup 6.5 system would this debug log be enabled?
A. NetBackup Master Server (host A)
B. NetBackup EMM (host B)
C. NetBackup Media Server (host C)
D. NetBackup Client (host D)
Answer: C

Symantec   ST0-47W examen   certification ST0-47W   ST0-47W

NO.20 What are two features of the Flexible Disk Option? (Select two.)
A. shared disk
B. de-duplication
C. replication
D. advanced disk
Answer: AD

Symantec examen   certification ST0-47W   ST0-47W

NO.21 What are two benefits of using OpenStorage to manage and control the use of disk-based storage by
Veritas NetBackup 6.5? (Select two.)
A. A Storage Unit can be configured to fail over from a Disk Pool to tape.
B. Multiple Media Servers can access and share a Disk Pool.
C. A Data Pool can be created, which allows load balancing of both tape and disk.
D. Load balancing can be performed across the Media Servers for a Disk Pool.
Answer: BD

Symantec   ST0-47W   certification ST0-47W   ST0-47W   ST0-47W

NO.22 The backup of a client is not running at the expected time, based upon a specific backup policy and
schedule.
Which Veritas NetBackup 6.5 service/process is responsible for the worklist that contains the entry for this
job and for the initiation of the job, based upon the 'due' time of the job?
A. NetBackup Policy Execution Manager
B. NetBackup Job Manager
C. NetBackup Jobs Database Manager
D. NetBackup Backup and Restore Manager
Answer: A

Symantec examen   ST0-47W examen   ST0-47W examen   certification ST0-47W   ST0-47W   ST0-47W

NO.23 Which two purchased options of Veritas NetBackup 6.5 enable the additional features found in the
Enterprise Disk Foundation? (Select two.)
A. Enterprise Client Option
B. Advanced Vault Option
C. VCB Integration Option
D. OpenStorage Option
E. Flexible Disk Option
Answer: DE

Symantec   ST0-47W   ST0-47W   ST0-47W examen   ST0-47W examen

NO.24 An administrator wants to back up a VMware virtual machine using the VMware Consolidated Backup
(VCB)interface.
Which component is required to enable VCB backups?
A. Database and Application Pack
B. Enterprise Client
C. Desktop and Laptop Option
D. Workstation Client
Answer: B

Symantec   ST0-47W examen   ST0-47W examen

NO.25 The backup of a particular client system fails with a status code 49 - 'Client did not start'.
For which process do you need to create and check the debug log?
A. bptm
B. bprd
C. bpbkar
D. bpdbm
Answer: C

Symantec   ST0-47W   certification ST0-47W   certification ST0-47W   ST0-47W examen

NO.26 Which two statements are true about the PBX communication facility used in Veritas NetBackup?
(Select two.)
A. PBX is used when legacy (pre-6.x) processes need to communicate with new (6.x) NetBackup
processes.
B. PBX is used for all tape library command streams in NetBackup 6.5 and above.
C. PBX is used for NetBackup 6.0 and above for all interprocess communication.
D. PBX is used for all disk array snapshot facility command streams in NetBackup 6.5 and above.
Answer: AC

certification Symantec   certification ST0-47W   ST0-47W   ST0-47W

NO.27 What is the purpose of the nbdb_ping command in Veritas NetBackup 6.5?
A. to determine if a Media Server has connectivity to the EMM database
B. to check the health and status of the Sybase ASA database
C. to create a roll-back checkpoint in the NetBackup Binary database
D. to run a simple handshake test between the Master and all Media Servers
Answer: B

Symantec   ST0-47W examen   ST0-47W examen   certification ST0-47W   certification ST0-47W

NO.28 The nbproxy process communicates and queries which Veritas NetBackup 6.5 component?
A. Enterprise Media Manager
B. Database Manager
C. Robotic Control Service
D. Automatic Volume Recognition daemon
Answer: B

Symantec   ST0-47W examen   ST0-47W   ST0-47W   ST0-47W

NO.29 What is it called when an administrator sets up a set of disk volumes that can then be assign to
specific Media Servers, Policies, or Storage Units?
A. OpenStorage
B. Disk Pool
C. Volume Pool
D. Disk Storage Unit
Answer: B

Symantec   ST0-47W   ST0-47W   ST0-47W examen

NO.30 For Veritas NetBackup 6.5, what is a backup image?
A. a complete copy of an existing backup to tape media (from a disk staging unit or tape media)
B. the subset of NetBackup 6.5 catalog metadata that describes and precisely locates the data from one
client
C. all backup data that is backed up from one client in a single stream during a specific backup session
D. a full backup of the data from one client, plus the Bare Metal Restore system image from that same
client
Answer: C

Symantec   certification ST0-47W   certification ST0-47W

Obtenez la Q&A de test Symantec ST0-47W de Pass4Test plus tôt, vous pouvez réussir le test Certification Symantec ST0-47W plus tôt.

Le dernier examen Symantec ST0-47X gratuit Télécharger

Avec l'aide du Pass4Test, vous allez passer le test de Certification Symantec ST0-47X plus facilement. Tout d'abord, vous pouvez choisir un outil de traîner de Symantec ST0-47X, et télécharger les Q&A. Bien que il y en a beaucoup de Q&A pour les tests de Certification IT, les nôtres peuvent vous donner non seulement plus de chances à s'exercer avant le test réel, mais encore vous feront plus confiant à réussir le test. La haute précision des réponses, la grande couverture des documentations, la mise à jour constamment vous assurent à réussir votre test. Vous dépensez moins de temps à préparer le test, mais vous allez obtenir votre certificat plus tôt.

Chaque expert dans l'équipe de Pass4Test ont son autorité dans cette industrie. Ils profitent ses expériences et ses connaissances professionnelles à préparer les documentations pour les candidats de test Certification IT. Les Q&As produites par Pass4Test ont une haute couverture des questions et une bonne précision des réponses qui vous permettent la réussie de test par une seule fois. D'ailleurs, un an de service gratuit en ligne après vendre est aussi disponible pour vous.

Le produit de Pass4Test que vous choisissez vous met le pied sur la première marche du pic de l'Industrie IT, et vous serez plus proche de votre rêve. Les matériaux offerts par Pass4Test peut non seulement vous aider à réussir le test Symantec ST0-47X, mais encore vous aider à se renforcer les connaissances professionnelles. Le service de la mise à jour pendant un an est aussi gratuit pour vous.

Pass4Test peut vous fournir un raccourci à passer le test Symantec ST0-47X: moins de temps et efforts dépensés. Vous trouverez les bonnes documentations de se former dans le site Pass4Test qui peut vous aider efficacement à réussir le test Symantec ST0-47X. Si vous voyez les documentations dans les autres sites, c'est pas difficile à trouver qu''elles sont venues de Pass4Test, parce que lesquelles dans Pass4Test sont le plus complété et la mise à jour plus vite.

Code d'Examen: ST0-47X
Nom d'Examen: Symantec (Symantec NetBackup 6.5 (STS))
Questions et réponses: 105 Q&As

Si vous faites toujours la lutte contre le test Symantec ST0-47X, Pass4Test peut vous aider à résoudre ces difficultés avec ses Q&As de qualité, et atteindre le but que vous avez envie de devenir un membre de Symantec ST0-47X. Si vous avez déjà décidé à s'améliorer via Symantec ST0-47X, vous n'avez pas aucune raison à refuser Pass4Test. Pass4Test peut vous aider à passer le test à la première fois.

ST0-47X Démo gratuit à télécharger: http://www.pass4test.fr/ST0-47X.html

NO.1 Which two are internal databases used by Veritas NetBackup 6.5? (Select two.)
A. NDMP File database
B. Image database
C. Topology database
D. EMM database
E. Encrypted Media database
Answer: BD

Symantec   certification ST0-47X   ST0-47X examen

NO.2 For Veritas NetBackup 6.5, what is a backup image?
A. a complete copy of an existing backup to tape media (from a disk staging unit or tape media)
B. the subset of NetBackup 6.5 catalog metadata that describes and precisely locates the data from one
client
C. all backup data that is backed up from one client in a single stream during a specific backup session
D. a full backup of the data from one client, plus the Bare Metal Restore system image from that same
client
Answer: C

Symantec   ST0-47X   ST0-47X examen   ST0-47X examen

NO.3 Which two cause the Policy Execution Manager to modify the Next Due Jobs worklist? (Select two.)
A. when Enterprise Media Manager initiates a request to modify the worklist
B. when a backup policy is added, modified, or removed
C. when a job is initiated and completed
D. when a user initiated backup is requested
Answer: BC

Symantec   ST0-47X   ST0-47X   ST0-47X examen   ST0-47X

NO.4 What happens when a backup is started and there are no tapes in the pool specified in the policy?
A. The backup automatically fails and a status code 96 is shown.
B. The Media Manager tries to move a tape from the Scratch Pool to the specified pool.
C. The oldest Full backup is deleted, and that tape is reused for the backup.
D. The GUI pops up a message asking the administrator which action to take.
Answer: B

Symantec   ST0-47X   certification ST0-47X   certification ST0-47X

NO.5 What are two benefits of using OpenStorage to manage and control the use of disk-based storage by
Veritas NetBackup 6.5? (Select two.)
A. A Storage Unit can be configured to fail over from a Disk Pool to tape.
B. Multiple Media Servers can access and share a Disk Pool.
C. A Data Pool can be created, which allows load balancing of both tape and disk.
D. Load balancing can be performed across the Media Servers for a Disk Pool.
Answer: BD

Symantec   ST0-47X examen   certification ST0-47X   ST0-47X examen   ST0-47X

NO.6 In Veritas NetBackup 6.5 there are currently three storage units (STU-A, STU-B and STU-C). STU-A is
set as On Demand Only, and STU-B and STU-C do not have On Demand Only selected. Three policies
have been created as follows: PolicyA is set up to use storage unit STU-A, PolicyB is set up as Any
Available storage unit and PolicyC is set up to use STU-C.
If STU-B fills up, and STU-A and STU-C still have available space, what happens to future backups for
PolicyB?
A. Backups will use STU-A.
B. Backups will use STU-C.
C. Backups will remain queued waiting for available space on STU-B.
D. Backups will fail with an error message indicating media is unavailable.
Answer: B

Symantec   ST0-47X   ST0-47X

NO.7 Which three features are included in the Standard Infrastructure capacity tier? (Select three.)
A. Library Based Tape Drive
B. OpenStorage Option
C. Vault Option
D. Shared Storage Option
E. Flexible Disk Option
Answer: ACD

Symantec examen   certification ST0-47X   certification ST0-47X   ST0-47X   ST0-47X

NO.8 What are three options for locating and viewing Veritas NetBackup 6.5 manuals and other
documentation? (Select three.)
A. NetBackup 6.5 media set (the CD-ROMs and/or DVD-ROMs)
B. documentation files in /opt/openv/goodies/hlp (UNIX/Linux)
C. hard copy documentation provided with NetBackup 6.5
D. online on the Symantec Corporation Support website
E. help files in C:\Program Files\Veritas\NetBackup\goodies\help (Windows)
Answer: ACD

Symantec   ST0-47X examen   certification ST0-47X   certification ST0-47X   ST0-47X examen   ST0-47X examen

NO.9 What are two features of the Flexible Disk Option? (Select two.)
A. shared disk
B. de-duplication
C. replication
D. advanced disk
Answer: AD

Symantec   certification ST0-47X   ST0-47X examen

NO.10 Which two purchased options of Veritas NetBackup 6.5 enable the additional features found in the
Enterprise Disk Foundation? (Select two.)
A. Enterprise Client Option
B. Advanced Vault Option
C. VCB Integration Option
D. OpenStorage Option
E. Flexible Disk Option
Answer: DE

Symantec   certification ST0-47X   ST0-47X examen   ST0-47X

NO.11 What is it called when an administrator sets up a set of disk volumes that can then be assign to
specific Media Servers, Policies, or Storage Units?
A. OpenStorage
B. Disk Pool
C. Volume Pool
D. Disk Storage Unit
Answer: B

Symantec examen   ST0-47X   ST0-47X   certification ST0-47X

NO.12 Which feature of Veritas NetBackup 6.5 allows backup data to be encrypted at no additional cost?
A. Media Server Encryption
B. NDMP Encryption
C. Client Encryption
D. EMM Server Encryption
Answer: C

certification Symantec   certification ST0-47X   certification ST0-47X   ST0-47X examen

NO.13 What is OpenStorage?
A. the new Symantec physical disk array
B. the software layer that interfaces with any type of disk
C. the Veritas NetBackup 6.5 service that manages disks
D. a new term for a Veritas NetBackup 6.5 Disk Storage Unit
Answer: B

Symantec   ST0-47X examen   ST0-47X examen   ST0-47X   ST0-47X   ST0-47X

NO.14 An administrator wants to back up a VMware virtual machine using the VMware Consolidated Backup
(VCB) interface.
Which component is required to enable VCB backups?
A. Database and Application Pack
B. Enterprise Client
C. Desktop and Laptop Option
D. Workstation Client
Answer: B

Symantec   certification ST0-47X   ST0-47X

NO.15 An administrator wants to use the capacity-based licensing model. There are 50 clients, each with 50
GB of data that must be backed up. Ten of the clients are database servers.
What is the correct specification for determining the license configuration?
A. 5 Front End Terabytes, 40 Client Licenses, 10 Application and Database Packs
B. 1 Enterprise Server, 40 Client Licenses, 10 Application and Database Packs
C. 2.5 Front End Terabytes, 50 Client Licenses, 10 Application and Database Packs
D. 5 Back End Terabytes, 50 Client Licenses, 10 Application and Database Packs
Answer: C

Symantec   ST0-47X examen   ST0-47X   ST0-47X examen

NO.16 Which two disk-based features support data de-duplication? (Select two.)
A. SAN Disk
B. Flexible Disk
C. OpenStorage Disk
D. PureDisk Storage
Answer: CD

Symantec   ST0-47X   ST0-47X examen   ST0-47X

NO.17 Which three statements are true about exclude lists? (Select three.)
A. They can be specific for schedules.
B. They can be specific for policies.
C. They can be used during user initiated backups.
D. They can use wildcards for file names.
E. They can be run after the include list.
Answer: ABD

certification Symantec   certification ST0-47X   ST0-47X   ST0-47X examen

NO.18 In Veritas NetBackup 6.5, what is a backup policy?
A. a set of associations defining which Backup Creation Wizard will run with which clients
B. a schedule defining when a given backup will execute its full or incremental sessions
C. a list of parameters that define the details of how a given backup will be performed
D. a list of clients to be backed up and how long the backup can run
Answer: C

Symantec   certification ST0-47X   ST0-47X examen

NO.19 Which two components/options of Veritas NetBackup 6.5 include the Bare Metal Restore (BMR) Client?
(Select two.)
A. Standard Client
B. Bare Metal Restore Client
C. Enterprise Client
D. Desktop and Laptop Client
E. Database and Application Pack
Answer: AC

Symantec   certification ST0-47X   ST0-47X

NO.20 In your data center, application data is deemed to be the most important data. You use Platinum Data
Classification in the policy to back up the Application data. You have UNIX clients that use Silver and
Bronze Data Classifications in their policies. There are Windows clients that do not use Data
Classifications. All data is backed up to DSSUs, have a one-year retention and have relocated to tape.
Which backup images are deleted first from the DSSUs when the disk becomes full?
A. application backups
B. UNIX client backups
C. Windows client backups
D. No backups are deleted.
Answer: C

certification Symantec   ST0-47X   ST0-47X   certification ST0-47X   ST0-47X examen

Pass4Test est un bon catalyseur du succès pour les professionnels IT. Beaucoup de gens passer le test Symantec ST0-47X avec l'aide de l'outil formation. Les experts profitent leurs expériences riches et connaissances à faire sortir la Q&A Symantec ST0-47X plus nouvelle qui comprend les exercices de pratiquer et le test simulation. Vous pouvez passer le test Symantec ST0-47X plus facilement avec la Q&A de Pass4Test.