You are on page 1of 11

Exam Title

: Sybase 510-309 : PowerBuilder 10.0 Professional Exam

Version : R6.1

www.Prepking.com

Prepking - King of Computer Certification Important Information, Please Read Carefully


Other Prepking products A) Offline Testing engine Use the offline Testing engine product to practice the questions in an exam environment. B) Study Guide (not available for all exams) Build a foundation of knowledge which will be useful also after passing the exam. Latest Version We are constantly reviewing our products. New material is added and old material is updated. Free updates are available for 90 days after the purchase. You should check your member zone at Prepking and update 3-4 days before the scheduled exam date. Here is the procedure to get the latest version: 1.Go towww.Prepking.com 2.Click on Member zone/Log in (right side) 3. Then click My Account 4.The latest versions of all purchased products are downloadable from here. Just click the links. For most updates,it is enough just to print the new questions at the end of the new version, not the whole document. Feedback If you spot a possible improvement then please let us know. We always interested in improving product quality. Feedback should be send to feedback@Prepking.com. You should include the following: Exam number, version, page number, question number, and your login ID. Our experts will answer your mail promptly. Copyright Each PDF file contains a unique serial number associated with your particular name and contact information for security purposes. So if we find out that a particular PDF file is being distributed by you, Prepking reserves the right to take legal action against you according to the International Copyright Laws. Explanations This product does not include explanations at the moment. If you are interested in providing explanations for this exam, please contact feedback@Prepking.com.

www.Prepking.com

1. Which function or statement could be used to dynamically add a user defined Tab control to a window? A. OpenTab() B. OpenUserObject() C. Create D. CreateObject() Answer: B

2. Which of the following can be invoked from the System Tree but not the Object Browser? A. Edit B. Copy C. Regenerate D. Inherit Answer: D

3. The FreeDBLibrary property is associated with which object? A. DataWindow control B. Transaction C. Application D. Window Answer: C

4. CloseWithReturn can be used with what type of window? A. popup! B. response! C. main! D. child! Answer: B

5. Which DataWindow presentation styles CANNOT be displayed in a Web Client? (Choose 2) A. Crosstab

www.Prepking.com

B. Tabular C. Graph D. N-Up E. Rich Text F. Labels Answer: CE

6. For a web DataWindow, these are advantages of deploying a DataWindow container component over deploying DataWindow objects in a PBL. (Choose 3) A. DataWindows retrieve( ) function executes faster B. HTML Generator initialization is faster due to fewer method calls from web tier to the server C. Connections from an EAServer Cache can only be acquired by a DataWwindow container D. The HTML generator can be extended through adding service custom classes E. Declarative resource settings are made from the components .Prop file Answer: BDE

7. Which of the following events can be found on a button located a 4GL web page? A. ServerAction B. Validate C. BeforeAction D. FirstTime Answer: A

8. When looking at the event list of a control placed on a 4GL Web Page, what is the significance of events displayed in blue? A. This is an inactive event B. This is a reserved event C. This is a server-side event D. This is a client-side event Answer: C

www.Prepking.com

9. Which of the following can be set in a Web Target deployment configuration? (Choose 2) A. Page imports B. Context parameters C. Page directives D. Servlet Load on Startup Answer: BD

10. For a ListView control, which of the following are VALID functions? (Choose 2) A. GetItemAtPointer B. GetObjectAtPointer C. Sort D. SortAll Answer: AC

11. Which of the following steps is NOT involved in populating a ListView control? A. Instantiate a ListViewItem object B. Set static ListViewItem properties C. Insert ListViewItems into the ListView control D. Define ListViewItem properties such as label Answer: A

12. Which features are common to both TreeView and ListView controls assuming only PowerBuilder properties and methods are used? (Choose 2) A. items can be sorted based on user-defined criteria B. different images can be used to indicate the state of individual items C. static view items can be defined at design time D. end-users can select multiple items concurrently Answer: AB

www.Prepking.com

13. The ___________ system class is used to create custom tab pages A. Tab B. DrawObject C. UserObject D. GraphicObject E. NonVisualObject Answer: C

14. Level 0 in a TreeView represents: A. The next level of items B. The first level of items C. An error condition D. The root Answer: D

15. ____________ event is triggered only on first expansion of a TreeViewItem A. ItemExpanding B. ItemSelected C. ItemPopulate D. ItemExpanded E. ItemChanging Answer: C

16. FindItem() function is used in ____________ A. Tab B. Graph C. DataWindow D. TreeView E. Rich text Answer: D

www.Prepking.com

17. Cursors can be declared using which scope(s)? A. Local, Instance, Global B. Instance, Shared, Global C. Instance, Global D. Local, Instance, Global, Shared Answer: D

18. Which of these User Object types can be used to create an object of type oleobject? A. Standard Visual B. Custom Visual C. External Visual D. Standard Class E. Custom Class Answer: D

19. Stored Procedures can be declared as external functions to which type of object? A. Application Object B. Connection C. DataStore D. Transaction Answer: D

20. Changes made in the Source Editor affects the objects____________ A. immediately upon saving B. at particular time intervals C. after they are compiled D. in no way, as the source editor state is read-only and system generated Answer: A

www.Prepking.com

21. ______________ is an Object Oriented Concept in which a function has more than one definition. Each version of the function has a different argument list, which is how they are distinguished. A. Overriding B. Overloading C. Abstraction D. Encapsulation E. Inheritance Answer: B

22. Assuming that the class n_cst_base is the ancestor to n_cst_person which is the ancestor to n_cst_employee and n_cst_manager which of the following statements are TRUE: (Choose 2) A. A reference variable declared with n_cst_base can reference an object of the n_cst_manager data type B. A reference variable declared with n_cst_employee can reference an object of the n_cst_manager data type C. All methods created on n_cst_person will be in n_cst_base, n_cst_employee, and n_cst_manager. D. The pronoun super, when used in n_cst_manager, refers to n_cst_person. Answer: AD

23. What is the ClassDefinition property of an object? A. A string containing the class name of the object B. An object reference used for class information C. An array of method signatures for a class D. It contains the memory address of the object Answer: B

24. Custom Transaction

Objects are required: (Choose 2)

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

www.Prepking.com

Answer: BC

25. Which of the following are TRUE with respect to methods invoked with the DYNAMIC keyword? (Choose 2) A. The compiler's method validation is suppressed as is runtime syntax checking to the right of the DYNAMIC keyword. B. Only object (not global) methods may be invoked with the DYNAMIC keyword. C. If the method is an event that has a return type and the event is not found, no run time error will occur even if your code attempts to access the return value (i.e., it "fails silently"). D. If the method is a function that has a return type and the function is not found, a run time error will occur even if your code does not attempt to access the return value E. The use of the DYNAMIC keyword results in no performance degradation. Answer: BD

26. The __________ A. DestroyModel () B. SetNull() C. RemoveContent() D. GarbageCollect() E. DeleteSeries() Answer: D

function forces immediate destruction of all unreferenced objects on the heap.

27. In what order does PowerBuilder search for variable references? A. local, instance, shared, global B. local, instance, global, shared C. local, shared, global, instance D. local, shared, instance, global E. local, global, instance, shared Answer: C

www.Prepking.com

28. Which of the following are TRUE with respect to AncestorReturnValue? (Choose 2) A. Its data type is always the same as the data type for the ancestor's return value. B. Its data type is always data type ANY. C. If the method has no return type, a reference to AncestorReturnValue returns NULL. D. If the method has no return type, a reference to AncestorReturnValue will not compile. E. AncestorReturnValue may be used in both Events and Functions. F. The syntax ancestor_class_name::AncestorReturnValue may be used to access the value returned by a specific ancestor. Answer: AD

29. If a descendant object can only read an ancestor's instance variable, what is the variable's access? A. privateread B. private C. public D. public privatewrite E. protectedread Answer: E

30. Which of the following properties would be used to change the current XML template for a DataWindow Object? A. Export.XML.UseTemplate B. Export.XML.Template[].name C. Data.XML D. Data.XMLSchema Answer: A

31. Which of the following is a requirement when using ShareData? A. The column data types and order within the shared DataWindow objects are identical. B. The shared DataWindow objects reside in the same PBL. C. The shared DataWindow objects have the same presentation styles.

www.Prepking.com

100% Pass Guaranteed or Full Refund Word to Word Real Exam Questions from Real Test Buy full version of exam from this link below http://www.prepking.com/510-309.htm

You might also like