Study Guides and Actual Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA


Advertise

Submit Braindumps

Forum

Tell A Friend

    Contact Us

 Home

 Search

Latest Brain Dumps

 BrainDump List

 Certifications Dumps

 Microsoft

 CompTIA

 Oracle

  Cisco
  CIW
  Novell
  Linux
  Sun
  Certs Notes
  How-Tos & Practices 
  Free Online Demos
  Free Online Quizzes
  Free Study Guides
  Free Online Sims
  Material Submission
  Test Vouchers
  Users Submissions
  Site Links
  Submit Site

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Online Training Demos and Learning Tutorials for Windows XP, 2000, 2003.

 

 

 

 





Braindumps for "510-309" Exam

Good Collection from ITCertkeys

 Question 1.
FindItem() function is used in ____________

A. Rich text
B. TreeView
C. DataWindow
D. Graph
E. Tab

Answer: B

Question 2.
This return code when placed in a DataWindow control ItemError event will automatically put back the original value and allow the focus to change

A. 2
B. 3
C. 0
D. 1

Answer: B

Question 3.
What functionality does the FileReadEx method have that the FileRead method does not?

A. ability to read more than 32K bytes at a time
B. ability to read files specified via Unified Naming Convention (UNC)
C. ability to read binary files
D. ability to read Unicode files in addition to ASCII files

Answer: A

Question 4.
Which of these are Pipeline Object properties? (Choose 2)

A. Repair
B. Cancel
C. RowsInError
D. RowsRead
E. PipeEnd

Answer: C, D

Question 5.
Which statement is TRUE regarding functions and events? (Choose 2)

A. The default behavior of a function is to override; the default for an event is to extend
B. Both functions and events can be made private
C. Functions and events can be both mapped and unmapped
D. events can be posted functions cannot be posted

Answer: A

Question 6.
Custom Transaction Objects are required: (Choose 2)

A. when you want to extend SQLCA
B. when you want to use dynamic DQL format 3 & 4
C. when you want to define stored procedures as methods
D. to define destination data for pipelines

Answer: A, C

Question 7.
In the code shown below, what is the value of lb_valid_object?
powerobject lpo_object
boolean lb_valid_object
SetNull(lpo_object)
lb_valid_object = isValid(lpo_object)

A. False
B. True
C. Causes a runtime error
D. Null

Answer: D

Question 8.
What is the default encoding format for the FileOpen() function?

A. EncodingANSI!
B. EncodingUTF16BE!
C. EncodingUTF8!
D. EncodingUTF16LE!

Answer: A

Question 9.
Identify the CORRECT statements with regard to the AncestorReturnValue variable? (Choose 2)

A. When you extend an event, the compiler automatically generates an instance variable called 
    AncestorReturnValue.
B. When you extend an event, the compiler automatically generates a local variable called 
    AncestorReturnValue.
C. The AncestorReturnValue variable is generated if you override the ancestor script and use the 
    CALL syntax to call the ancestor event script.
D. The AncestorReturnValue variable is generated if you extend the ancestor script and use the 
    CALL syntax to call the ancestor event script.

Answer: C

Question 10.
When implementing a UDDI browser you use methods of the which class?

A. UDDI Generator
B. UDDI Component
C. UDDIProxy
D. UDDI client

Answer: C

Question 11.
Which function or statement could be used to dynamically add a user defined Tab control to a window?

A. Create
B. OpenTab()
C. CreateObject()
D. OpenUserObject()

Answer: D

Question 12.
Which function contains optional arguments that utilize the WordParm and LongParm properties of the message object to pass information?

A. GetEnvironment()
B. Open()
C. TriggerEvent()
D. ChooseColor()

Answer: C

Question 13.
This specific exception class type can be thrown by a web service method call and should be caught in the client application.

A. SOAPException
B. PBXRuntimeError
C. CORBASystemException
D. CORBAUserException
E. CORBAUnknown

Answer: A

Question 14.
Choose the script below that will ensure that if either update fails, all the change flags will be intact and the database will be unmodified.

A. IF dw_master.Update( ) = 1 THEN
IF dw_detail.Update( ) = 1 THEN
COMMIT USING SQLCA;
ELSE
ROLLBACK USING SQLCA;
END IF
ELSE
ROLLBACK USING SQLCA;
END IF
B. IF dw_master.Update(TRUE, FALSE ) = 1 THEN
IF dw_detail.Update( ) = 1 THEN
COMMIT USING SQLCA;
dw_master.ResetUpdate()
ELSE
ROLLBACK USING SQLCA;
END IF
ELSE
ROLLBACK USING SQLCA;
END IF
C. IF dw_master.Update( ) = 1 THEN
IF dw_detail.Update(TRUE, FALSE ) = 1 THEN
COMMIT USING SQLCA;
ELSE
ROLLBACK USING SQLCA;
END IF
ELSE
ROLLBACK USING SQLCA;
END IF
D. dw_master.Update( )
   dw_detail.Update( )
   COMMIT USING SQLCA;

Answer: B

Question 15.
After the following script is executed, what is the integer value of the variable urrentRow?
int currentRow = 0;
dw_1.SelectRow(99, FALSE)
dw_1.ScrollToRow(20)
dw_1.SelectRow(21, TRUE)
dw_1.ReSelectRow(5)
currentRow = dw_1.GetRow()

A. 99
B. 20
C. 5
D. 21

Answer: B

Question 16.
In what event might you restart or shutdown your application when there has been no user activity for a specified period of time?

A. MDI window's Activate event
B. active window's Timer event
C. application's Close event
D. application's Idle event

Answer: D

Question 17.
Which of these DataWindow events allow using return codes to dynamically modify their default behavior? (Choose 3)

A. ItemFocusChanged
B. Error
C. Clicked
D. EditChanged
E. Itemchanged
F. RowFocusChanging

Answer: C, E, F

Question 18.
Select the best description of the following sample of code:
long ll_template, ll_count
ll_template = long(dw_xml.object.datawindow.export.xml.templatecount)
ddlb_template.reset()
for ll_count = 1 to ll_template
ddlb_template.additem(dw_xml.object.datawindow.export.xml.template[ll_count].name)
next

A. This code will cycle through the template array of a DataWindow Control assigning all xml 
    templates to another DataWindow control.
B. This code will populate a drop down list box with the xml template names found in a 
    DataWindow control.
C. This code will locate the current xml template being used by a DataWindow Control and assign 
    it into a drop down list box.
D. This code will change the xml template assigned to a DataWindow control to the last template 
    found in the array.

Answer: B

Question 19.
If a descendant object can only read an ancestor's instance variable, what is the variable's access?

A. public privatewrite
B. public
C. privateread
D. private
E. protectedread

Answer: E

Question 20.
Which event gets triggered only at the time of first expansion of an item in a Tree View?

A. ItemPopulate
B. ItemExpanded
C. ItemCollapsed
D. ItemExpanding
E. ItemCollapsing

Answer: A

Question 21.
What does the following code sample reference:
dw_data.object.data.primary.current

A. All values retrieved from the database
B. All values from the current row
C. All new and retrieved values
D. All values that are selected

Answer: C

Question 22.
Identify the VALID statements when discussing the use of retrieval arguments in a DataWindow. (Choose 2)

A. Extra arguments passed on the retrieve will trigger the dberror event.
B. String array retrieval arguments should use the Noperator in the DataWindow SQL where 
    clause.
C. PowerBuilder will load the correct object into the control based on the passed arguments and 
    the DataWindow objects associated with the control.
D. Extra arguments can be defined but need not be referenced in the DataWindow object.

Answer: B, D

Question 23.
A PowerBuilder/EAServer service component has which of the following methods? (Choose 2)

A. Destroy
B. Run()
C. Stop()
D. Init()

Answer: B, C


Google
 
Web www.certsbraindumps.com


Braindumps: Dumps for 642-544 Exam Brain Dump

Study Guides and Actual Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA


Advertise

Submit Braindumps

Forum

Tell A Friend

    Contact Us





Braindumps for "642-544" Exam

Implementing Cisco Security Monitoring, Analysis and Response

 Question 1.
The definitions on the left to the appropriate terms on the right
 
Answer:
 

Question 2.
What will happen if you try to run a Cisco Security MARS query that will take a long time to complete?

A. After submitting the query, the Cisco Security MARS GUI screen will be locked up until the 
    query is completed.
B. The query will be automatically saved as a rule.
C. The query will be automatically saved as a report.
D. You will be prompted to "Submit Batch" to run the query in batch mode.

Answer:  D

Question 3.
The Cisco Security MARS appliance supports which protocol for data archiving and restoring?

A. NFS
B. TFTP
C. FTP
D. Secure FTP
E. SSH

Answer:  A

Question 4.
What is a benefit of using the dollar variable (as in $TARGET01) when creating queries in Cisco Security MARS?

A. The dollar variable enables multiple queries to reference the same common 5-tuple information 
    using a variable.
B. The dollar variable ensures that the probes and attacks that are reported are happening to the 
    same host.
C. The dollar variable allows matching of any unknown reporting device.
D. The dollar variable allows matching of any event type groups.
E. The dollar variable enables the same query to be applied to different reports.
F. The dollar variable enables the same query to be applied to different cases.

Answer:  B

Question 5.
A Cisco Security MARS appliance cannot access certain devices through the default gateway. Troubleshooting has determined that this is a Cisco Security MARS configuration issue. 

Which additional Cisco Security MARS configuration will be required to correct this issue?

A. use the Cisco Security MARS GUI or CLI to enable a dynamic routing protocol
B. use the Cisco Security MARS CLI to add a static route
C. use the Cisco Security MARS GUI to configure multiple default gateways
D. use the Cisco Security MARS GUI or CLI to configure multiple default gateways

Answer:  B

Question 6.
What are three ways to add devices to the Cisco Security MARS appliance? (Choose three.)

A. import the devices from CiscoWorks
B. import the devices from Cisco Security Manager
C. load the devices from seed files
D. use SNMP auto discovery
E. use CDP to automatically discover the neighboring devices
F. manually add the devices, one at a time

Answer:  C, D, F

Question 7.
Which action enables the Cisco Security MARS appliance to ignore false-positive events by either dropping the events completely, or by just logging them to the database?

A. creating system inspection rules using the drop operation
B. creating drop rules
C. inactivating the rules
D. inactivating the events
E. deleting the false-positive events from the Incidents page
F. deleting the false-positive events from the Event Management page

Answer:  Pending

Question 8.
Which three statements are true about Cisco Security MARS rules? (Choose three.)

A. There are three types of rules.
B. Rules can be saved as reports.
C. Rules can be deleted.
D. Rules trigger incidents.
E. Rules can be defined using a seed file.
F. Rules can be created using a query.

Answer:  B

Question 9.
Which of the following alert actions can be transmitted to a user as notification that a Cisco Security MARS rule has fired, and that an incident has been logged? (Choose two.)

A. Distributed Threat Mitigation
B. Short Message Service
C. SNMP trap
D. XML notification
E. syslog
F. OPSEC-LEA (clear and encrypted)

Answer:  A, D, F

Question 10.
To configure a Microsoft Windows IIS server to publish logs to the Cisco Security MARS, which log agent is installed and configured on the Microsoft Windows IIS server?

A. pnLog agent
B. Cisco Security MARS agent
C. SNARE
D. None. Cisco Security MARS is an agentless device.

Answer:  B, D



Google
 
Web www.certsbraindumps.com


Study Guides and Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA





              Privacy Policy                   Disclaimer                    Feedback                    Term & Conditions

www.helpline4IT.com

ITCertKeys.com

Copyright © 2004 CertsBraindumps.com Inc. All rights reserved.