45,000 Jobs - Get an Interview Call,  Post Your Resume Here
SURESHKUMAR.NET FORUMS
Registered Member Login:
Not a member? Register today!



Welcome to the SURESHKUMAR.NET FORUMS.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.




ORACLE Placement Papers ORACLE profile pattern , ORACLE Latest placement papers and Updated ORACLE 2006 2007 placement papers . If you have attended recent test of ORACLE , kindly post the model paper in this forum.

ORACLE placement paper 16

        

Reply
 
LinkBack Thread Tools Display Modes
Old 09-02-07, 07:38 PM   #1 (permalink)
Super Moderator
 
sridhar's Avatar
 
Join Date: Feb 2006
Age: 26
Posts: 4,502
Thanks: 25
Thanked 417 Times in 239 Posts
Rep Power: 0 sridhar has a reputation beyond repute sridhar has a reputation beyond repute sridhar has a reputation beyond repute sridhar has a reputation beyond repute sridhar has a reputation beyond repute sridhar has a reputation beyond repute sridhar has a reputation beyond repute sridhar has a reputation beyond repute sridhar has a reputation beyond repute sridhar has a reputation beyond repute sridhar has a reputation beyond repute
ORACLE placement paper 16

30. What are the different types of Coordinations of the Master with the Detail block?
42. What is the User-Named Editor?
A user named editor has the same text editing functionality as the default editor, but, becaue it is a named object, you can specify editor attributes such as windows display size, position, and title.
43. What are the Built-ins to display the user-named editor?
A user named editor can be displayed programmatically with the built in procedure SHOW-EDITOR, EDIT_TETITEM independent of any particular text item.
44. What is the difference between SHOW_EDITOR and EDIT_TEXTITEM?
Show editor is the generic built_in which accepts any editor name and takes some input string and returns modified output string. Whereas the edit_textitem built_in needs the input focus to be in the text item before the built_in is excuted.
45. What is an LOV?
An LOV is a scrollable popup window that provides the operator with either a single or multi column selection list.
46. What is the basic data structure that is required for creating an LOV?
Record Group.
47. What is the "LOV of Validation" Property of an item? What is the use of it?
When LOV for Validation is set to True, Oracle Forms compares the current value of the text item to the values in the first column displayed in the LOV.
Whenever the validation event occurs.
If the value in the text item matches one of the values in the first column of the LOV, validation succeeds, the LOV is not displayed, and processing continues normally.
If the value in the text item does not match one of the values in the first column of the LOV, Oracle Forms displays the LOV and uses the text item value as the search criteria to automatically reduce the list.

48. What are the built_ins used the display the LOV?
Show_lov
List_values
49. What are the built-ins that are used to Attach an LOV programmatically to an item?
set_item_property
get_item_property
(by setting the LOV_NAME property)
50. What are the built-ins that are used for setting the LOV properties at runtime?
get_lov_property
set_lov_property

51. What is a record group?
A record group is an internal Oracle Forms that structure that hs a column/row framework similar to a database table. However, unlike database tables, record groups are separate objects that belong to the form module which they are defined.

52. How many number of columns a record group can have?
A record group can have an unlimited number of columns of type CHAR, LONG, NUMBER, or DATE provided that the total number of column does not exceed 64K.

53. What is the Maximum allowed length of Record group Column?
Record group column names cannot exceed 30 characters.
54. What are the different types of Record Groups?
Query Record Groups
NonQuery Record Groups
State Record Groups
55. What is a Query Record Group?
A query record group is a record group that has an associated SELECT statement. The columns in a query record group derive their default names, data types, had lengths from the database columns referenced in the SELECT statement. The records in query record group are the rows retrieved by the query associated with that record group.
56. What is a Non Query Record Group?
A non-query record group is a group that does not have an associated query, but whose structure and values can be modified programmatically at runtime.
57. What is a Static Record Group?
A static record group is not associated with a query, rather, you define its structure and row values at design time, and they remain fixed at runtime.
58. What are the built-ins used for Creating and deleting groups?
CREATE-GROUP (function)
CREATE_GROUP_FROM_QUERY(function)
DELETE_GROUP(procedure)
59.What are the built -ins used for Modifying a group's structure?
ADD-GROUP_COLUMN (function)
ADD_GROUP_ROW (procedure)
DELETE_GROUP_ROW(procedure)
60. POPULATE_GROUP(function)
POPULATE_GROUP_WITH_QUERY(function)
SET_GROUP_CHAR_CELL(procedure)
SET_GROUP_DATE_CELL(procedure)
SET_GROUP_NUMBER_CELL(procedure)
61. What are the built-ins used for Getting cell values?
GET_GROUP_CHAR_CELL (function)
GET_GROUP_DATE_CELL(function)
GET_GROUP_NUMBET_CELL(function)
62. What are built-ins used for Processing rows?
GET_GROUP_ROW_COUNT(function)
GET_GROUP_SELECTION_COUNT(function)
GET_GROUP_SELECTION(function)
RESET_GROUP_SELECTION(procedure)
SET_GROUP_SELECTION(procedure)
UNSET_GROUP_SELECTION(procedure)
63. What are the built-ins used for finding Object ID function?
FIND_GROUP(function)
FIND_COLUMN(function)

64. Use the ADD_GROUP_COLUMN function to add a column to a record group that was created at design time.
I) TRUE II)FALSE
II) FALSE

65. Use the ADD_GROUP_ROW procedure to add a row to a static record group
I) TRUE II)FALSE
I) FALSE

61. What are the built-in used for getting cell values?
Get_group_char_cell(function)
Get_group_date_cell(function)
Get_group_number_cell(function)
62. What are the built-ins used for processing rows?
Get_group_row_count(function)
Get_group_selection_count(function)
Get_group_selection(function)
Reset_group_selection(procedure)
Set_group_selection(procedure)
Unset_group_selection(procedure)
63. What are the built-ins used for finding object ID functions?
Find_group(function)
Find_column(function)
64. Use the add_group_column function to add a column to record group that was created at a design time? False.
65. Use the Add_group_row procedure to add a row to a static record group 1. true or false? False.

parameters

66. What are parameters?
Parameters provide a simple mechanism for defining and setting the values
of inputs that are required by a form at startup. Form parameters are variables of type char,number,date that you define at design time.
67. What are the Built-ins used for sending Parameters to forms?
You can pass parameter values to a form when an application executes the call_form, New_form, Open_form or Run_product.
68. What is the maximum no of chars the parameter can store?
The maximum no of chars the parameter can store is only valid for char parameters, which can be upto 64K. No parameters default to 23Bytes and Date parameter default to 7Bytes.
69. How do you call other Oracle Products from Oracle Forms?
Run_product is a built-in, Used to invoke one of the supported oracle tools products and specifies the name of the document or module to be run. If the called product is unavailable at the time of the call, Oracle Forms returns a message to the opertor.

70. How do you reference a Parameter?
In Pl/Sql, You can reference and set the values of form parameters using bind variables syntax. Ex. PARAMETER name = '' or :block.item = PARAMETER
Parameter name
71. How do you reference a parameter indirectly?
To indirectly reference a parameter use the NAME IN, COPY 'built-ins to indirectly set and reference the parameters value' Example name_in ('capital parameter my param'), Copy ('SURESH','Parameter my_param')
72. What are the different Parameter types?
Text Parameters

Data Parameters

73. When do you use data parameter type?
When the value of a data parameter being passed to a called product is always the name of the record group defined in the current form. Data parameters are used to pass data to produts invoked with the run_product built-in subprogram.
74. Can you pass data parametrs to forms?
No.

IMAGES

75. What are different types of images?
Boiler plate images
Image Items

76. What is the difference between boiler plat images and image items?
Boiler plate Images are static images (Either vector or bit map) that you import from the file system or database to use a grapical elements in your form, such as company logos and maps Image items are special types of interface controls that store and display either vector or bitmap images. Llike other items that store values, image items can be either base table items(items that relate directly to database columns) or control items. The definition of an image item is stored as part of the form module FMB and FMX files, but no image file is actualy associated with an image item until the item is populate at run time.

77. What are the trigger associated with image items?
When-image-activated fires when the operators double clicks on an image item when-image-pressed fires when an operator clicks or double clicks on an image item

78. What is the use of image_zoom built-in?
To manipulate images in image items.


WORKING WITH MULTIPLE FORMS

79. How do you create a new session while open a new form?
Using open_form built-in setting the session option Ex. Open_form('Stocks ',active,session). when invoke the mulitiple forms with open form and call_form in the same application, state whether the following are true/False

80. Any attempt to navigate programatically to disabled form in a call_form stack is allowed?
False

81. An open form can not be execute the call_form procedure if you chain of called forms has been initiated by another open form?
True

82. When a form is invoked with call_form, Does oracle forms issues a save point?
True

Mouse Operations

83. What are the various sub events a mouse double click event involves?
Double clicking the mouse consists of the mouse down, mouse up, mouse click, mouse down & mouse up events.

84, State any three mouse events system variables?
System.mouse_button_pressed
System.mouse_button_shift_state
system.mouse_item
system.mouse_canvas
system.mouse_record

OLE

85. What is an OLE?
Object Linking & Embadding provides you with the capability to integrate objects from many Ms-Windows applications into a single compound document creating integrated applications enables you to use the features form .

86. What is the difference between object embedding & linking in Oracle forms?
In Oracle forms, Embedded objects become part of the form module, and linked objects are references from a form module to a linked source file.

87. What is the difference between OLE Server & Ole Container?
An Ole server application creates ole Objects that are embedded or linked in ole Containers ex. Ole servers are ms_word & ms_excell. OLE containers provide a place to store, display and manipulate objects that are created by ole server applications. Ex. oracle forms is an example of an ole Container.

88. What are the different styles of actvation of ole Objects?
In place activation
External activation

ViSUAL Attributes & property clauses

89. What are visual attributes?
Visual attributes are the font, color, pattern proprities that you set for form and menu objects that appear in your application interface.

90. What is a property clause?

A property clause is a named object that contains a list of properties and thier settings. Once you create a property clause you can base other object on it. An object based on a property can inherit the setting of any property in the clause that makes sense for that object.

91. Can a property clause itself be based on a property clause?
Yes

92. What are the important difference between property clause and visual attributes?
Named visual attributes differed only font, color & pattern attributes, property clauses can contain this and any other properties. You can change the appearance of objects at run time by changing the named visual attributes programatically , property clause assignments cannot be changed programatically. When an object is inheriting from both a property clause and named visual attribute, the named visual attribute settings take precedence, and any visual attribute properties in the class are ignored.

Form Build-ins

93. What is a Text_io Package?
It allows you to read and write information to a file in the file system.

94. What is an User_exit?
Calls the user exit named in the user_exit_string. Invokes a 3Gl programe by name which has been properly linked into your current oracle forms executable.

95. What is synchronize?
It is a terminal screen with the internal state of the form. It updates the screen display to reflect the information that oracle forms has in its internal representation of the screen.

96. What is forms_DDL?
Issues dynamic Sql statements at run time, including server side pl/SQl and DDL
Triggers

97. What is WHEN-Database-record trigger?
Fires when oracle forms first marks a record as an insert or an update. The trigger fires as soon as oracle forms determines through validation that the record should be processed by the next post or commit as an insert or update. c generally occurs only when the operators modifies the first item in the record, and after the operator attempts to navigate out of the item.

98. What are the master-detail triggers?
On-Check_delete_master
On_clear_details
On_populate_details

99. What is the difference between $$DATE$$ & $$DBDATE$$

$$DBDATE$$ retrieves the current database date
$$date$$ retrieves the current operating system date.

100. What is system.coordination_operation?

sridhar is offline Offline   Reply With Quote
Reply

Tags
oracle , oracle 2009 placement papers , oracle 2010 placement papers , oracle aptitude questions , oracle careers , oracle entrance exam , oracle exam , oracle exam papers , oracle exam pattern , oracle interview , oracle interview pattern , oracle interview questions , oracle latest placement papers , oracle online exam , oracle papers , oracle pattern , oracle placement papers , oracle profile , oracle puzzles , oracle question papers , oracle sample papers , oracle test , oracle written exam , paper , placement


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
INFOSYS 2006 PLACEMENT PAPERS sridhar Companies Info & Recruitment Process 2 14-04-07 02:22 PM
ORACLE placement paper 11 sridhar ORACLE Placement Papers 0 09-02-07 07:22 PM
ORACLE placement paper 8 sridhar ORACLE Placement Papers 0 09-02-07 07:07 PM
ORACLE placement paper 7 sridhar ORACLE Placement Papers 0 09-02-07 06:44 PM
CTS 2006 PLACEMENT PAPERS sridhar Companies Info & Recruitment Process 0 09-10-06 05:24 PM


All times are GMT +6.5. The time now is 03:28 AM.

More Interview Questions Here...

Content Relevant URLs by vBSEO 3.3.0