LANGUAGES | POWER BUILDER | POWER BUILDER INTERVIEW QUESTION AND ANSWERS - 20

PowerBuilder Interview Question and Answers:

105.     What are facilities of the User Objects?
      We define a component once, then reuse it many times as we need without any additional work.

106.     What does Open User Object() do?
      Open User Object() adds a user object to the specified window and makes all its properties and controls available to scripts. window name.Open User Object ( user object var, user object type {, x, y } ) This function is used when you want dynamically, at run time place some user objects on a window. This function displays this user object, makes all its attributes available to scripts. You must open a user object before you can access the attributes of the user object. If you access the user object’s attributes before you open it, it will cause an execution error.

107.     How can you dynamically place an User Object on the window?
      By using functions : Open User Object( ), Open User Object With Parm( )

108.     What Events does the Custom Class have?
      Constructor and Destructor

 109.     What are Non-Visual User Objects?
      Non-visual user object is an object that encapsulates attributes and functions but is not visible to the user. NVO is a collection of business user functions. They can be Custom Class and Standard Class. NVOs are useful because they allow you to encapsulate application operations into objects making them easier to develop, manage and maintain and also to encapsulate all security management for an application into a single object.

110.     Explain the purpose of a non-visual user objects?
      The purpose of non-visual user objects is to define business rules and other processing (which are checked in different windows in your application) that act as a unit. We implement them in Power Builder using Class User Objects.

111.     What events are available to a standard class User Object?
      Constructor and Destructor.

112.     How is a custom visual UserObject different from a standard UserObject?
      A custom visual user object is an object that has several controls that work as a unit. A standard visual user object inherits its definition from a standard control. We modify the definition to make the control specific to our applications.

No comments:

Post a Comment