Ora Forms 6i

5
Oracle Forms 6i 1. Can you change the mouse pointer ? A. Yes B. No C. None 2) Can you have VBX and OCX controls in forms ? A. No B. Yes C. None 3. What is Current record attribute property? A. Specifies the name of the .FMX file of the form currently being executed. B. Specifies the number of the current record in the block's list of records.. C. Specifies the number of the current record in the block's list of records.. D. Specifies the name of the current form, as indicated by the form module Name property. 4. Can you port applictions across the platforms? how? A. No B. Yes C. Depends on Platform used D. None 5. Following one is a Property of Call_Form. A. opens a separate, independent form B. replaces the current form with a different form C. calls a modal form D. None 6. How many types of Canvases are available in Forms? A. Three B. Two C. One D. Four 7. Can a button have icon and lable at the same time ? A. Yes B. None C. No D. Depends on icon type 8. Which of the Following statement is Valid for static group? A. A Record group that has an associated SELECT statement B. A Record grou p that is not associated with a query; rather , you define its structure and row values at design time, and they remain fixed at runtime. C. A Record group that is a group that does not have an associated query, but  whose structure and values can be modified progr ammatically at runtime D. Non of the above. 9. What is the Sequence of Trigger Firing in Forms?

Transcript of Ora Forms 6i

7/27/2019 Ora Forms 6i

http://slidepdf.com/reader/full/ora-forms-6i 1/5

Oracle Forms 6i

1. Can you change the mouse pointer ?A. YesB. NoC. None

2) Can you have VBX and OCX controls in forms ?A. NoB. YesC. None

3. What is Current record attribute property?A. Specifies the name of the .FMX file of the form currently being executed.B. Specifies the number of the current record in the block's list of records..C. Specifies the number of the current record in the block's list of records..D. Specifies the name of the current form, as indicated by the form module

Name property.

4. Can you port applictions across the platforms? how?A. NoB. Yes

C. Depends on Platform usedD. None

5. Following one is a Property of Call_Form.A. opens a separate, independent formB. replaces the current form with a different formC. calls a modal formD. None

6. How many types of Canvases are available in Forms?A. ThreeB. TwoC. One

D. Four

7. Can a button have icon and lable at the same time ?A. YesB. NoneC. NoD. Depends on icon type

8. Which of the Following statement is Valid for static group?A. A Record group that has an associated SELECT statementB. A Record group that is not associated with a query; rather, you define its

structure and row values at design time, and they remain fixed at runtime.

C. A Record group that is a group that does not have an associated query, but whose structure and values can be modified programmatically at runtime

D. Non of the above.

9. What is the Sequence of Trigger Firing in Forms?

7/27/2019 Ora Forms 6i

http://slidepdf.com/reader/full/ora-forms-6i 2/5

A. First Item, then Block and then Form Level

B. First Form Level, Block Level then Item Level

C. First Block Level, Then Form Level then Item Level

D. There is no such sequence of firing

10. What is a Secure Property?

A. Hides characters that the end user enters for the substitution parameter.

B. Displays characters that the end user enters for the substitution Parameter

C. Determines whether Form Builder hides the window automatically when the end user navigates to an item in another window

D. makes the current menu disappear

11. How many types of Window Styles are available in Forms?

A. OneB. TwoC. ThreeD. Four

12. Can you issue DDL in forms?

A. YesB. NoC. None

13. Say, you have created al named alert_info.

How many alert buttons will be available for alert buttons?

A. TwoB. OneC. ThreeD. Can define any n numbers of buttons

14. In Record Group Total Number of Columns should not exceed..

A. 32kB. 128 K

C. 16 K

D. 64 K

15. System variable :System.Record_status Defines

7/27/2019 Ora Forms 6i

http://slidepdf.com/reader/full/ora-forms-6i 3/5

A. Represents the status of the record where the cursor is located.B. Represents the status of a Data block where the cursor is located, or the current data block during trigger processingC. Status of Current formD. None

16. POST built-in is used toA. Writes data in the form to the database, but does not perform a database commit. Form Builder first validates the formB. Causes Form Builder to update data in the database to match data in the form.C. Form Builder rolls back uncommitted changes (including posted changes) to the last save point.D. Form Builder does not issue a rollback, and posted changes are preserved

17. Executable Forms Menu File has an extensionA. .mmbB. .mmxC. .fmbD. .fmx

18. SYSTEM.MESSAGE_LEVEL stores one of the following message severity levelsA. 0,10,15B. 0,10,15,20

C. 0D. 0,10,15,20,25

19. To get the name of the Operating System on which application is running, following built-in is used.A. GET_CUSTOM_PROPERTYB. GET_OS_PROPERTYC. GET_APPLICATION_PROPERTYD. GET_FORM_PROPERTY

20. Can Forms be connected to SQL SERVER?A. Yes

B. NoC. None

21. Is Forms 6i is Object Oriented Tool?A. NoB. YesC. None

22. Can object group have a blockA. YesB. No

22. Can you call WIN-SDK thruo' user exits?A. NoB. Yes

24. Does user exits supports DLL on MSWINDOWS ?A. YESB. NO

25. Query System Mode Indicates

7/27/2019 Ora Forms 6i

http://slidepdf.com/reader/full/ora-forms-6i 4/5

A. Indicates that the form is currently in normal processing mode.B. Indicates that the form is currently in Enter Query mode.C. Both A and BD. Indicates that the form is currently in fetch processing mode, meaning that a query is currently being processed.

26. How many types of System Modes are available?A. OneB. FourC. ThreeD. Two

27. In Release 5.0 and later, cursor mode is handled automatically by Form Builder. Is it True?A. YesB. No

28. Whats the Use of Delayed Locking Mode Property?A. Form Builder locks the row only while it posts the transaction to the database, not while the end user is editing the record. Form Builder prevents the commit action from processing if values of the fields in the block have changed when the user causes a commit action.

B. Identical to Immediate if the datasource is an Oracle database. For other dat

asources, Form Builder determines the available locking facilities and behaves as much like Immediate as possible.

C. Form Builder locks the corresponding row as soon as the end user presses a key to enter or edit the value in a text item.

D. All Above

29. CREATE OR REPLACE FUNCTION set_budget

(v_studio_id IN NUMBER, v_new_budget IN NUMBER) ISBEGINUPDATE emp

SET sal = v_new_budgetWHERE empno = v_studio_id;IF SQL%FOUND THENRETURN TRUE;ELSERETURN FALSE;END IF;COMMIT;END;

Which code must be added to successfully compile this function?

A.Add "RETURN;" right before the "IS" keyword.

B.Add "RETURN number" right before the "IS" keyword.C.Add "RETURN boolean" right after the "IS" keyword.D.Add "RETURN boolean" right before the "IS" keyword.

30. The function ID_NULL that is used to test whether the object id isAvailable or not, the function returns which of the following value?

7/27/2019 Ora Forms 6i

http://slidepdf.com/reader/full/ora-forms-6i 5/5

A. Varchar2B. NumberC. BooleanD. Char

 

1