InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 401. |
Can U Change Vat At Run Time? |
|
Answer» YES. You can programmatically change an object's named visual attribute SETTING to change the FONT, color, and PATTERN of the object at runtime. Yes. You can programmatically change an object's named visual attribute setting to change the font, color, and pattern of the object at runtime. |
|
| 402. |
What Is Current Record Attribute Property? |
|
Answer» Specifies the named visual attribute used when an item is part of the CURRENT record. Current Record Attribute is frequently used at the block level to display the current ROW in a multi-record If you define an item-level Current Record Attribute, you can display a pre-determined item in a SPECIAL color when it is part of the current record, but you cannot dynamically highlight the current item, as the input focus CHANGES. Specifies the named visual attribute used when an item is part of the current record. Current Record Attribute is frequently used at the block level to display the current row in a multi-record If you define an item-level Current Record Attribute, you can display a pre-determined item in a special color when it is part of the current record, but you cannot dynamically highlight the current item, as the input focus changes. |
|
| 403. |
Which Trigger Related To Mouse? |
|
Answer» When-Mouse-Click. When-Mouse-Click. |
|
| 404. |
Can U Port Applictions Across The Platforms? How? |
|
Answer» Yes we can port APPLICATIONS across platforms. Consider the form developed in a WINDOWS system. The form would be GENERATED in unix system by USING f45gen my_form.fmb scott/tiger. Yes we can port applications across platforms. Consider the form developed in a windows system. The form would be generated in unix system by using f45gen my_form.fmb scott/tiger. |
|
| 405. |
What Is Call Form Stack? |
|
Answer» When successive forms are LOADED via the CALL_FORM PROCEDURE, the RESULTING module HIERARCHY is known as the call form STACK. When successive forms are loaded via the CALL_FORM procedure, the resulting module hierarchy is known as the call form stack. |
|
| 406. |
What Does Invoke Built-in Do? |
|
Answer» This PROCEDURE INVOKES a method. Syntax: PROCEDURE OLE2.INVOKE (object obj_type, method VARCHAR2, list list_type := 0);Parameters:
This procedure invokes a method. Syntax: Parameters: |
|
| 407. |
What Is Ole Automation? |
|
Answer» OLE AUTOMATION allows an OLE server application to EXPOSE a set of COMMANDS and functions that can be invoked from an OLE container application. OLE automation provides a WAY for an OLE container application to use the features of an OLE server application to manipulate an OLE object from the OLE container environment. (FORMS_OLE). OLE automation allows an OLE server application to expose a set of commands and functions that can be invoked from an OLE container application. OLE automation provides a way for an OLE container application to use the features of an OLE server application to manipulate an OLE object from the OLE container environment. (FORMS_OLE). |
|
| 408. |
What Is Transactional Trigger Property? |
|
Answer» IDENTIFIES a block as TRANSACTIONAL control block. i.e. non - DATABASE block that ORACLE forms should manage as transactional block.(NON-ORACLE DATASOURCE) default - FALSE. Identifies a block as transactional control block. i.e. non - database block that oracle forms should manage as transactional block.(NON-ORACLE datasource) default - FALSE. |
|
| 409. |
What Are Savepoint Mode And Cursor Mode Properties? Level? |
|
Answer» Specifies whether Oracle Forms should issue savepoints during a SESSION. This property is INCLUDED primarily for applications that will run against non-ORACLE data sources. For applications that will run against ORACLE, use the default setting. Cursor MODE - define cursor STATE across TRANSACTION Open/close. Specifies whether Oracle Forms should issue savepoints during a session. This property is included primarily for applications that will run against non-ORACLE data sources. For applications that will run against ORACLE, use the default setting. Cursor mode - define cursor state across transaction Open/close. |
|
| 410. |
Can You Connect To Non - Oracle Datasource? |
|
Answer» Yes. Yes. |
|
| 411. |
What Is Precompiler? |
|
Answer» It is SIMILAR to C PRECOMPILER DIRECTIVES. It is similar to C precompiler directives. |
|
| 412. |
What Is Path Setting For Dll? |
|
Answer» Make sure you INCLUDE the name of the DLL in the FORMS45_USEREXIT variable of the ORACLE. INI file, or rename the DLL to F45XTB.DLL. If you rename the DLL to F45XTB.DLL, REPLACE the EXISTING F45XTB. DLL in the ORAWINBIN directory with the NEW F45XTB.DLL. Make sure you include the name of the DLL in the FORMS45_USEREXIT variable of the ORACLE. INI file, or rename the DLL to F45XTB.DLL. If you rename the DLL to F45XTB.DLL, replace the existing F45XTB. DLL in the ORAWINBIN directory with the new F45XTB.DLL. |
|
| 413. |
How Is Mapping Of Name Of Dll And Function Done? |
|
Answer» The DLL can be created using the Visual C++ / Visual BASIC Tools and then the dll is PUT in the path that is defined the registry. The dll can be created using the Visual C++ / Visual Basic Tools and then the dll is put in the path that is defined the registry. |
|
| 414. |
Does User Exits Supports Dll On Mswindows? |
|
Answer» YES. YES. |
|
| 415. |
Can You Call Win-sdk Through User Exits? |
|
Answer» YES. YES. |
|
| 416. |
What Is Iapxtb Structure ? |
|
Answer» The entries of Pro * C and user exits and the form which simulate the PROC or user_exit are STORED in IAPXTB table in d/b. The entries of Pro * C and user exits and the form which simulate the proc or user_exit are stored in IAPXTB table in d/b. |
|
| 417. |
Can You Pass Values To-and-fro From Foreign Function? How? |
|
Answer» YES . You obtain a return VALUE from a foreign function by assigning the return value to an Oracle Forms variable or item. Make sure that the Oracle Forms variable or item is the same data type as the return value from the foreign function. After assigning an Oracle Forms variable or item value to a PL/SQL variable, pass the PL/SQL variable as a parameter value in the PL/SQL interface of the foreign function. The PL/SQL variable that is passed as a parameter must be a valid PL/SQL data type; it must also be the APPROPRIATE parameter type as DEFINED in the PL/SQL interface. Yes . You obtain a return value from a foreign function by assigning the return value to an Oracle Forms variable or item. Make sure that the Oracle Forms variable or item is the same data type as the return value from the foreign function. After assigning an Oracle Forms variable or item value to a PL/SQL variable, pass the PL/SQL variable as a parameter value in the PL/SQL interface of the foreign function. The PL/SQL variable that is passed as a parameter must be a valid PL/SQL data type; it must also be the appropriate parameter type as defined in the PL/SQL interface. |
|
| 418. |
What Are User-exits? |
|
Answer» A USER exit is a C subroutine written by you and called by Oracle Forms to do special-purpose processing. You can EMBED SQL STATEMENTS and PL/SQL blocks in your user exit, then precompile it as you WOULD a host program. When called by an Oracle Forms V3 trigger, the user exit runs, then returns a status code to Oracle Forms. Your exit can display messages on the Oracle Forms status line, get and set field values, do high-speed computations and table lookups, and MANIPULATE Oracle data. A user exit is a C subroutine written by you and called by Oracle Forms to do special-purpose processing. You can embed SQL statements and PL/SQL blocks in your user exit, then precompile it as you would a host program. When called by an Oracle Forms V3 trigger, the user exit runs, then returns a status code to Oracle Forms. Your exit can display messages on the Oracle Forms status line, get and set field values, do high-speed computations and table lookups, and manipulate Oracle data. |
|
| 419. |
How Many Types Of Canvases Are There? |
|
Answer» There are 2 TYPES of canvases CALLED as Content and STACK Canvas. Content canvas is the default and the one that is used mostly for GIVING the base effect. Its like a plate on which we add items and stacked canvas is used for giving 3 DIMENSIONAL effect. There are 2 types of canvases called as Content and Stack Canvas. Content canvas is the default and the one that is used mostly for giving the base effect. Its like a plate on which we add items and stacked canvas is used for giving 3 dimensional effect. |
|
| 420. |
Can Object Group Have A Block? |
|
Answer» Yes , OBJECT group can have BLOCK as well as PROGRAM UNITS. Yes , object group can have block as well as program units. |
|
| 421. |
What Are Timers ? When When-timer-expired Does Not Fire? |
|
Answer» The When-Timer-Expired TRIGGER can not FIRE during trigger, NAVIGATION, or TRANSACTION PROCESSING. The When-Timer-Expired trigger can not fire during trigger, navigation, or transaction processing. |
|
| 422. |
What Is Forms_mdi_window? |
|
Answer» forms RUN INSIDE the MDI application window. This property is USEFUL for CALLING a FORM from another one. forms run inside the MDI application window. This property is useful for calling a form from another one. |
|
| 423. |
What Is Mouse Navigate Property Of Button? |
|
Answer» When MOUSE Navigate is TRUE (the default), Oracle Forms performs standard navigation to move the focus to the item when the OPERATOR ACTIVATES the item with the mouse. When Mouse Navigate is SET to False, Oracle Forms does not perform navigation (and the resulting validation) to move to the item when an operator activates the item with the mouse. When Mouse Navigate is True (the default), Oracle Forms performs standard navigation to move the focus to the item when the operator activates the item with the mouse. When Mouse Navigate is set to False, Oracle Forms does not perform navigation (and the resulting validation) to move to the item when an operator activates the item with the mouse. |
|
| 424. |
Can A Button Have Icon And Label At The Same Time? |
|
Answer» NO. NO. |
|
| 425. |
What Are Alerts? |
|
Answer» An ALERT is a modal WINDOW that DISPLAYS a MESSAGE notifying operator of some application CONDITION. An ALERT is a modal window that displays a message notifying operator of some application condition. |
|
| 426. |
If You Have Property Class Attached To An Item And You Have Same Trigger Written For The Item . Which Will Fire First? |
|
Answer» Item level TRIGGER fires , If item level trigger fires, property level trigger won't fire. Triggers at the LOWEST level are always given the first PREFERENCE. The item level trigger fires first and then the block and then the Form level trigger. Item level trigger fires , If item level trigger fires, property level trigger won't fire. Triggers at the lowest level are always given the first preference. The item level trigger fires first and then the block and then the Form level trigger. |
|
| 427. |
What Are Property Classes ? Can Property Classes Have Trigger? |
|
Answer» Property class INHERITANCE is a POWERFUL feature that allows you to quickly define objects that conform to your own interface and functionality STANDARDS. Property classes also allow you to MAKE global changes to applications quickly. By SIMPLY changing the definition of a property class, you can change the definition of all objects that inherit properties from that class. Property class inheritance is a powerful feature that allows you to quickly define objects that conform to your own interface and functionality standards. Property classes also allow you to make global changes to applications quickly. By simply changing the definition of a property class, you can change the definition of all objects that inherit properties from that class. |
|
| 428. |
Can You Store Pictures In Database? How? |
|
Answer» Yes , in long Raw datatype. |
|
| 429. |
What Is Secure Property? |
|
Answer» HIDES CHARACTERS that the operator types into the TEXT item. This SETTING is typically used for PASSWORD protection. Hides characters that the operator types into the text item. This setting is typically used for password protection. |
|
| 430. |
Is Forms 4.5 Object Oriented Tool ? Why? |
Answer»
yes , partially. |
|
| 431. |
What Are Referenced Objects? |
|
Answer» REFERENCING allows you to create objects that inherit their functionality and appearance from other objects. Referencing an object is similar to copying an object, EXCEPT that the resulting REFERENCE object maintains a link to its source object. A reference object automatically inherits any changes that have been MADE to the source object when you open or regenerate the MODULE that contains the reference object. Referencing allows you to create objects that inherit their functionality and appearance from other objects. Referencing an object is similar to copying an object, except that the resulting reference object maintains a link to its source object. A reference object automatically inherits any changes that have been made to the source object when you open or regenerate the module that contains the reference object. |
|
| 432. |
What Are Object Groups? |
|
Answer» An OBJECT group is a container for a group of OBJECTS. You define an object group when you WANT to package RELATED objects so you can copy or reference them in another module. An object group is a container for a group of objects. You define an object group when you want to package related objects so you can copy or reference them in another module. |
|
| 433. |
Which System Variables Can Be Set By Users? |
Answer»
|
|
| 434. |
Which Triggers Are Created When Master -detail Relay? |
|
Answer» master delete property
master delete property |
|
| 435. |
Can You Use Select In From Clause Of Sql Select ? |
|
Answer» Yes. Yes. |
|
| 436. |
What Are Attributes Of Cursor? |
|
Answer» %FOUND , %NOTFOUND , %ISOPEN,%ROWCOUNT %FOUND , %NOTFOUND , %ISOPEN,%ROWCOUNT |
|
| 437. |
What Are The Datatypes Supported By Oracle (internal)? |
|
Answer» VARCHAR2, NUMBER,CHAR , MLSLABEL. Varchar2, Number,Char , MLSLABEL. |
|
| 438. |
What Is Clustered Index? |
|
Answer» In an indexed CLUSTER, ROWS are STORED together based on their cluster key VALUES . Can not APPLIED for HASH. In an indexed cluster, rows are stored together based on their cluster key values . Can not applied for HASH. |
|
| 439. |
Is Space Acquired In Blocks Or Extents ? |
|
Answer» In EXTENTS . In extents . |
|
| 440. |
How Many Columns Can Table Have? |
|
Answer» The NUMBER of COLUMNS in a table can RANGE from 1 to 254. The number of columns in a table can range from 1 to 254. |
|
| 441. |
What Is Pseudo Columns ? Name Them? |
|
Answer» A pseudocolumn behaves like a table column, but is not actually stored in the table. You can select from pseudocolumns, but you cannot insert, UPDATE, or DELETE their values. This section DESCRIBES these pseudocolumns:
A pseudocolumn behaves like a table column, but is not actually stored in the table. You can select from pseudocolumns, but you cannot insert, update, or delete their values. This section describes these pseudocolumns: |
|
| 442. |
Can U Disable Database Trigger? How? |
|
Answer» YES. With RESPECT to table Yes. With respect to table |
|
| 443. |
Can We Delete The Duplicate Rows In The Table? |
|
Answer» YES. We can delete the duplicate ROWS in the table by using the ROWID. Yes. We can delete the duplicate rows in the table by using the Rowid. |
|
| 444. |
What Is The Difference Between A Post Query And A Pre Query? |
|
Answer» A post QUERY will fire for EVERY row that is fetched but the pre query will fire only once. A post query will fire for every row that is fetched but the pre query will fire only once. |
|
| 445. |
What Is Normalisation? |
|
Answer» Normalisation is the process of organising the tables to remove the redundancy.There are mainly 5 Normalisation RULES.
Normalisation is the process of organising the tables to remove the redundancy.There are mainly 5 Normalisation rules. |
|
| 446. |
What Are Codd Rules? |
|
Answer» CODD Rules DESCRIBE the IDEAL NATURE of a RDBMS. No RDBMS satisfies all the 12 codd rules and Oracle Satisfies 11 of the 12 rules and is the only Rdbms to satisfy the MAXIMUM number of rules. Codd Rules describe the ideal nature of a RDBMS. No RDBMS satisfies all the 12 codd rules and Oracle Satisfies 11 of the 12 rules and is the only Rdbms to satisfy the maximum number of rules. |
|
| 447. |
What Are Mutating Tables? |
|
Answer» When a table is in state of transition it is said to be mutating. EG :: If a ROW has been deleted then the table is said to be mutating and no OPERATIONS can be DONE on the table except SELECT. When a table is in state of transition it is said to be mutating. eg :: If a row has been deleted then the table is said to be mutating and no operations can be done on the table except select. |
|
| 448. |
What Is The Difference Between Deleting And Truncating Of Tables? |
|
Answer» DELETING a table will not REMOVE the rows from the table but entry is there in the database DICTIONARY and it can be retrieved But truncating a table DELETES it completely and it cannot be retrieved. Deleting a table will not remove the rows from the table but entry is there in the database dictionary and it can be retrieved But truncating a table deletes it completely and it cannot be retrieved. |
|
| 449. |
What Is A 2 Phase Commit? |
|
Answer» Two Phase commit is used in distributed data BASE SYSTEMS. This is useful to maintain the integrity of the database so that all the users see the same values. It contains DML statements or Remote Procedural calls that reference a remote object. There are basically 2 phases in a 2 phase commit.
Two Phase commit is used in distributed data base systems. This is useful to maintain the integrity of the database so that all the users see the same values. It contains DML statements or Remote Procedural calls that reference a remote object. There are basically 2 phases in a 2 phase commit. |
|
| 450. |
What Are The Pct Free And Pct Used? |
|
Answer» Pct Free is USED to DENOTE the percentage of the free space that is to be left when creating a table. SIMILARLY Pct Used is used to denote the percentage of the used space that is to be used when creating a table Pct Free is used to denote the percentage of the free space that is to be left when creating a table. Similarly Pct Used is used to denote the percentage of the used space that is to be used when creating a table |
|