Oracle Mock Test, Oracle Online Test Series 5, Oracle Online Exam
Oracle Mock Test, Oracle Online Test Series 5, Oracle Online Exam
Finish Quiz
0 of 30 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
Information
Oracle Mock Test, Oracle Online Test Series 5, Online Oracle, online Test Quiz 5. Oracle Online Test 5 Question and Answers 2019. Oracle online Test Quiz 5. Oracle Test 5 Free Mock Test 2019. Oracle Online Test 5 Question and Answers in PDF. The Oracle online mock test paper is free for all students. Oracle Online Test is very useful for exam preparation and getting for Rank. Oracle Online Test 5 Question and Answers in English. Oracle Online Test for topic via String Handling Mode. Here we are providing Oracle Online Test in English Now Test your self for “Oracle Online Test in English” Exam by using below quiz…
This paper has 30 questions.
Time allowed is 30 minutes.
The Oracle Online Test is Very helpful for all students. Now Scroll down below n click on “Start Quiz” or “Start Test” and Test yourself.
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 30 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score |
|
Your score |
|
Categories
- Not categorized 0%
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- Answered
- Review
-
Question 1 of 30
1. Question
Which statement is incorrect about User_Defined Exceptions ?
Correct
The user-defined exceptions must be declared and must be raised explicitly by RAISE statements. Exceptions can be declared only in the declarative part of a PL/SQL block, subprogram, or package. You declare an exception by introducing its name, followed by the keyword EXCEPTION. You cannot declare an exception twice in the same block. You can, however, declare the same exception in two different blocks.
Exceptions declared in a block are considered local to that block and global to all its sub-blocks. Because a block can reference only local or global exceptions, enclosing blocks cannot reference exceptions declared in a sub-block.Incorrect
The user-defined exceptions must be declared and must be raised explicitly by RAISE statements. Exceptions can be declared only in the declarative part of a PL/SQL block, subprogram, or package. You declare an exception by introducing its name, followed by the keyword EXCEPTION. You cannot declare an exception twice in the same block. You can, however, declare the same exception in two different blocks.
Exceptions declared in a block are considered local to that block and global to all its sub-blocks. Because a block can reference only local or global exceptions, enclosing blocks cannot reference exceptions declared in a sub-block. -
Question 2 of 30
2. Question
Size of the SGA is not affected by _____________
Correct
The size of the SGA is not affected by the stored procedure. A system global area (SGA) is a group of shared memory structures that contain data and control information for one Oracle database instance. If multiple users are concurrently connected to the same instance, then the data in the instance’s SGA is shared among the users. Consequently, the SGA is sometimes called the shared global area.
Incorrect
The size of the SGA is not affected by the stored procedure. A system global area (SGA) is a group of shared memory structures that contain data and control information for one Oracle database instance. If multiple users are concurrently connected to the same instance, then the data in the instance’s SGA is shared among the users. Consequently, the SGA is sometimes called the shared global area.
-
Question 3 of 30
3. Question
Which command is invalid in PL/SQL ?
Correct
Incorrect
-
Question 4 of 30
4. Question
How Tablespace size can be increased?
Correct
Incorrect
-
Question 5 of 30
5. Question
Identify which Packaged procedure is Unrestricted?
Correct
A Package procedure is built in PL/SQL procedure. There are two types of Package Procedure:
1. Restricted package procedure: Restricted package procedure affects the basic functions of SQL * Forms. It cannot use in all triggers except key triggers.2. Unrestricted package procedure: Unrestricted package procedure does not interfere with the basic functions of SQL * Forms. It can be used in any triggers.
Following are the list of restricted and unrestricted procedure:
a. Call – unrestricted
b. User Exit – Unrestricted
c. Call_query – Unrestricted
d. Break – Unrestrictede. Up – Restricted
f. Execute Query – Restricted
g. Message – Restricted
h. Exit_form – Restricted
i. Post – RestrictedIncorrect
A Package procedure is built in PL/SQL procedure. There are two types of Package Procedure:
1. Restricted package procedure: Restricted package procedure affects the basic functions of SQL * Forms. It cannot use in all triggers except key triggers.2. Unrestricted package procedure: Unrestricted package procedure does not interfere with the basic functions of SQL * Forms. It can be used in any triggers.
Following are the list of restricted and unrestricted procedure:
a. Call – unrestricted
b. User Exit – Unrestricted
c. Call_query – Unrestricted
d. Break – Unrestrictede. Up – Restricted
f. Execute Query – Restricted
g. Message – Restricted
h. Exit_form – Restricted
i. Post – Restricted -
Question 6 of 30
6. Question
Why INTEGRITY CONSTRAINT are better to validate data in a table than to STORED PROCEDURE ?
Correct
An integrity constraint is automatically checked while data is inserted into or updated in a table while a stored procedure has to be specifically invoked.
Incorrect
An integrity constraint is automatically checked while data is inserted into or updated in a table while a stored procedure has to be specifically invoked.
-
Question 7 of 30
7. Question
Which statement is TRUE for the ENFORCE KEY field.
a. ENFORCE KEY field characteristic indicates the source of the value that SQL*FORMS uses to populate the field
b. A field with the ENFORCE KEY characteristic should have the INPUT ALLOWED characteristic turned offCorrect
Incorrect
-
Question 8 of 30
8. Question
SQL*FORMS is ____________
Correct
SQL*FORMS is a 4GL tool for developing and executing Oracle based interactive applications. SQL*Forms does not work with database tables directly it works with copies of them that are kept in a work space. This arrangement protects you from making mistakes; you can make a change to the workspace and then discard it. If you discard the changes, the table itself will not be affected.
Incorrect
SQL*FORMS is a 4GL tool for developing and executing Oracle based interactive applications. SQL*Forms does not work with database tables directly it works with copies of them that are kept in a work space. This arrangement protects you from making mistakes; you can make a change to the workspace and then discard it. If you discard the changes, the table itself will not be affected.
-
Question 9 of 30
9. Question
Declare
x number := 5; y number := null; c number := 10;
Begin
if x > y AND x ( Select count(*) from Emp E2 where E1.SAL > E2.SAL )Choose output of above query.
Correct
Incorrect
-
Question 10 of 30
10. Question
Which statement is incorrect about an Exception ?
Correct
An exception is a PL/SQL error that is raised during program execution, either implicitly by TimesTen or explicitly by your program. Handle an exception by trapping it with a handler or propagating it to the calling environment.
Incorrect
An exception is a PL/SQL error that is raised during program execution, either implicitly by TimesTen or explicitly by your program. Handle an exception by trapping it with a handler or propagating it to the calling environment.
-
Question 11 of 30
11. Question
Which statement is incorrect about the |TABLE| datatype ?
Correct
Incorrect
-
Question 12 of 30
12. Question
Variable of :SYSTEM.EFFECTIVE.DATE is
Correct
The SYSTEM.EFFECTIVE.DATE variable is write only. It enables you to set the effective database date.
Incorrect
The SYSTEM.EFFECTIVE.DATE variable is write only. It enables you to set the effective database date.
-
Question 13 of 30
13. Question
Output of the following ? XYZ?||NULL||?RAM? ?
Correct
Incorrect
-
Question 14 of 30
14. Question
Can we pass RECORD GROUP between FORMS?
Correct
Yes, we can pass RECORD GROUP between FORMS.
Incorrect
Yes, we can pass RECORD GROUP between FORMS.
-
Question 15 of 30
15. Question
Datatype(s) supported by PL/SQL are ________________
Correct
Every constant, variable, and parameter has a data type (also called a type) that determines its storage format, constraints, valid range of values, and operations that can be performed on it. PL/SQL provides many predefined data types and subtypes, and lets you define your own PL/SQL subtypes.
1. Scalar: Single values with no internal components.
2. Composite: Data items that have internal components that can be accessed individually.
3. Reference: Pointers to other data items.
4. Large Object (LOB): Pointers to large objects that are stored separately from other data items, such as text, graphic images, video clips, and sound waveforms.
Incorrect
Every constant, variable, and parameter has a data type (also called a type) that determines its storage format, constraints, valid range of values, and operations that can be performed on it. PL/SQL provides many predefined data types and subtypes, and lets you define your own PL/SQL subtypes.
1. Scalar: Single values with no internal components.
2. Composite: Data items that have internal components that can be accessed individually.
3. Reference: Pointers to other data items.
4. Large Object (LOB): Pointers to large objects that are stored separately from other data items, such as text, graphic images, video clips, and sound waveforms.
-
Question 16 of 30
16. Question
Rollback segment status can be viewed through
Correct
Rollback segment status can be viewed through DBA_ROLLBACK_SEGS. The rollback segments can be either private or public. A rollback segment in the PARTLY AVAILABLE state contains data for an in-doubt or recovered distributed transaction, and yet to be recovered transactions. You can view its status in the data dictionary view DBA_ROLLBACK_SEGS as PARTLY AVAILABLE. The rollback segment usually remains in this state until the transaction is resolved either automatically by RECO, or manually by a DBA. However, you might find that all rollback segments are PARTLY AVAILABLE.
Incorrect
Rollback segment status can be viewed through DBA_ROLLBACK_SEGS. The rollback segments can be either private or public. A rollback segment in the PARTLY AVAILABLE state contains data for an in-doubt or recovered distributed transaction, and yet to be recovered transactions. You can view its status in the data dictionary view DBA_ROLLBACK_SEGS as PARTLY AVAILABLE. The rollback segment usually remains in this state until the transaction is resolved either automatically by RECO, or manually by a DBA. However, you might find that all rollback segments are PARTLY AVAILABLE.
-
Question 17 of 30
17. Question
We can CALL Reports from Forms4.0 using _________
Correct
Incorrect
-
Question 18 of 30
18. Question
Oracle forms issue SAVEPOINT when a form is invoked with CALL_FORM. Yes/No
Correct
Yes, Oracle forms issue SAVEPOINT when a form is invoked with CALL_FORM.
Incorrect
Yes, Oracle forms issue SAVEPOINT when a form is invoked with CALL_FORM.
-
Question 19 of 30
19. Question
Which statement is incorrect about Cursor?
Correct
Cursor is a mechanism by which you can assign a name to a SELECT statement and manipulate the information within that SQL statement. It is a pointer to a private SQL area that stores information about the processing of a SELECT or DML statements like INSERT, UPDATE, DELETE or MERGE. Cursor is a mechanism which facilitates you to assign a name to a SELECT statement and manipulate the information within that SQL statement.
Incorrect
Cursor is a mechanism by which you can assign a name to a SELECT statement and manipulate the information within that SQL statement. It is a pointer to a private SQL area that stores information about the processing of a SELECT or DML statements like INSERT, UPDATE, DELETE or MERGE. Cursor is a mechanism which facilitates you to assign a name to a SELECT statement and manipulate the information within that SQL statement.
-
Question 20 of 30
20. Question
Which statement is incorrect about a View?
Correct
View is a virtual table that does not physically exist. Rather, it is created by a query joining one or more tables. It is stored in Oracle data dictionary and do not store any data. It can be executed when called.
Incorrect
View is a virtual table that does not physically exist. Rather, it is created by a query joining one or more tables. It is stored in Oracle data dictionary and do not store any data. It can be executed when called.
-
Question 21 of 30
21. Question
Oracle Reports creates different file extensions such as ____________
Correct
.rdf – This file contains a single report definition in binary format. .RDF files are used to both run and edit reports.
.rep – This file contains a single report definition in binary format. .REP files are used solely to run reports; you cannot edit a .REP file
.rex – This file contains a single report definition in text format. .REX files are portable.Incorrect
.rdf – This file contains a single report definition in binary format. .RDF files are used to both run and edit reports.
.rep – This file contains a single report definition in binary format. .REP files are used solely to run reports; you cannot edit a .REP file
.rex – This file contains a single report definition in text format. .REX files are portable. -
Question 22 of 30
22. Question
Choose the false statement __________________
Correct
Incorrect
-
Question 23 of 30
23. Question
Different events included in Triggers are _____________
Correct
You can write triggers that fire whenever one of the following operations occurs:
– DML statements (INSERT, UPDATE, DELETE) on a particular table or view, issued by any user
– DDL statements (CREATE or ALTER primarily) issued either by a particular schema/user or by any schema/user in the database
– Database events, such as logon/logoff, errors, or startup/shutdown, also issued either by a particular schema/user or by any schema/user in the database
Triggers are similar to stored procedures. A trigger stored in the database can include SQL and PL/SQL or Java statements to run as a unit and can invoke stored procedures. However, procedures and triggers differ in the way that they are invoked. A procedure is explicitly run by a user, application, or trigger. Triggers are implicitly fired by Oracle when a triggering event occurs, no matter which user is connected or which application is being used.
Incorrect
You can write triggers that fire whenever one of the following operations occurs:
– DML statements (INSERT, UPDATE, DELETE) on a particular table or view, issued by any user
– DDL statements (CREATE or ALTER primarily) issued either by a particular schema/user or by any schema/user in the database
– Database events, such as logon/logoff, errors, or startup/shutdown, also issued either by a particular schema/user or by any schema/user in the database
Triggers are similar to stored procedures. A trigger stored in the database can include SQL and PL/SQL or Java statements to run as a unit and can invoke stored procedures. However, procedures and triggers differ in the way that they are invoked. A procedure is explicitly run by a user, application, or trigger. Triggers are implicitly fired by Oracle when a triggering event occurs, no matter which user is connected or which application is being used.
-
Question 24 of 30
24. Question
While starting a Database following Sequence of events takes place ____________________
Correct
Following are sequences of events takes place while starting a database:
STARTUP NOMOUNT – Instance startup
STARTUP MOUNT – The database is mounted
STARTUP OPEN – The database is openedIncorrect
Following are sequences of events takes place while starting a database:
STARTUP NOMOUNT – Instance startup
STARTUP MOUNT – The database is mounted
STARTUP OPEN – The database is opened -
Question 25 of 30
25. Question
Find the odd one out.
Correct
Incorrect
-
Question 26 of 30
26. Question
Function SHOW_ALERT returns _________________
Correct
The SHOW_ALERT function returns number. This function shows the contents of the alert log in the default editor.
Incorrect
The SHOW_ALERT function returns number. This function shows the contents of the alert log in the default editor.
-
Question 27 of 30
27. Question
In WHEN_TEXT_ITEM trigger, can we use a RESTRICTED packaged procedure?
Correct
No, we cannot use a RESTRICTED packaged procedure in WHEN_TEXT_ITEM trigger.
Incorrect
No, we cannot use a RESTRICTED packaged procedure in WHEN_TEXT_ITEM trigger.
-
Question 28 of 30
28. Question
We get a .PLL extension when _______________
Correct
The .PLL files are the binary library modules. This file is portable across systems. The file is created when you save the library in the designer.
Incorrect
The .PLL files are the binary library modules. This file is portable across systems. The file is created when you save the library in the designer.
-
Question 29 of 30
29. Question
An ALERT is __________________
Correct
Incorrect
-
Question 30 of 30
30. Question
Can a CONTROL BLOCK can refer to a BASETABLE ?
Correct
Incorrect