Oracle 1z0-082 Exam Practice Questions (P. 2)
- Full Access (178 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #6
You have been tasked to create a table for a banking application.
One of the columns must meet three requirements:
1. Be stored in a format supporting date arithmetic without using conversion functions
2. Store a loan period of up to 10 years
3. Be used for calculating interest for the number of days the loan remains unpaid
Which data type should you use?
One of the columns must meet three requirements:
1. Be stored in a format supporting date arithmetic without using conversion functions
2. Store a loan period of up to 10 years
3. Be used for calculating interest for the number of days the loan remains unpaid
Which data type should you use?
- AINTERVAL YEAR TO MONTH
- BINTERVAL DAY TO SECONDMost Voted
- CTIMESTAMP WITH LOCAL TIMEZONE
- DTIMESTAMP
- ETIMESTAMP WITH TIMEZONE
Correct Answer:
B
B

B, INTERVAL DAY TO SECOND, is the optimal choice for the data type in this scenario. This data type allows precise calculations for the duration in days, which is essential for computing interest based on the days a loan remains unpaid. It naturally supports date arithmetic, making it ideal for handling situations where the duration needs to be calculated without extra conversion functions. This feature is crucial in banking applications where accuracy and efficiency in date-related calculations are required.
send
light_mode
delete
Question #7
In the spfile of a single instance database, LOCAL_LISTENER is set to LISTENER_1.
The TNSNAMES.ORA file in $ORACLE_HOME/network/admin in the database home contains:

Which statement is true?
The TNSNAMES.ORA file in $ORACLE_HOME/network/admin in the database home contains:

Which statement is true?
- ADynamic service registration cannot be used for this database instance
- BThe LREG process registers services dynamically with the LISTENER_1 listenerMost Voted
- CLISTENER_1 must also be defined in the LISTENER.ORA file to enable dynamic service registration
- DThere are two listeners named LISTENER and LISTENER_1 running simultaneously using port 1521 on the same host as the database instances
- EThe definition for LISTENER_1 requires a CONNECT_DATA section to enable dynamic service registration
Correct Answer:
C
Reference:
https://docs.oracle.com/database/121/NETAG/listenercfg.htm#NETAG292
C
Reference:
https://docs.oracle.com/database/121/NETAG/listenercfg.htm#NETAG292
send
light_mode
delete
Question #8
Which three statements are true concerning logical and physical database structures? (Choose three.)
- AAll tablespaces may have one or more data files
- BThe extents of a segment must always reside in the same datafile
- CA smallfile tablespace might be bigger than a bigfile tablespaceMost Voted
- DA segment can span multiple data files in some tablespacesMost Voted
- EA segment's blocks can be of different sizes
- FA segment might have only one extentMost Voted
- GSegments can span multiple tablespaces
Correct Answer:
CDF
CDF

Correct choices C, D, and F expound accurately on Oracle’s database structures. Regarding C, while bigfile tablespaces typically contain a single large datafile, smallfile tablespaces can contain multiple datafiles that collectively may surpass the size of a bigfile's datafile. For D, a segment's ability to span multiple data files within certain types of tablespaces (chiefly locally managed ones) allows flexibility in storage management. Lastly, F is valid because a segment may indeed consist of only a single extent if its data requirements are sufficiently compact to fit within one extent's limits, proving efficiency in space usage within the database. These insights are crucial for understanding the configuration and optimization of Oracle database storage.
send
light_mode
delete
Question #9
Which two statements are true regarding a SAVEPOINT? (Choose two.)
- ARolling back to a SAVEPOINT can undo a CREATE INDEX statement
- BRolling back to a SAVEPOINT can undo a TRUNCATE statement
- COnly one SAVEPOINT may be issued in a transaction
- DA SAVEPOINT does not issue a COMMITMost Voted
- ERolling back to a SAVEPOINT can undo a DELETE statementMost Voted
Correct Answer:
DE
DE

Savepoints are very handy in managing transactions, particularly when only partial rollbacks are required. Unlike DDL commands like CREATE INDEX or TRUNCATE, which automatically commit a transaction, DML statements such as DELETE can be rolled back. This flexibility is vital in scenarios where undoing specific operations without affecting others is necessary. Also, it's good to remember that issuing a savepoint within a transaction does not result in a COMMIT. Hence, any changes made after a savepoint can be undone, up to the point of the last established savepoint.
send
light_mode
delete
Question #10
Which three functions are performed by dispatchers in a shared server configuration? (Choose three.)
- Awriting inbound request to the common request queue from all shared server connectionsMost Voted
- Bchecking for outbound shared server responses on the common outbound response queue
- Creceiving inbound requests from processes using shared server connectionsMost Voted
- Dsending each connection input request to the appropriate shared server input queue
- Ebroadcasting shared server session responses back to requesters on all connections
- Fsending shared server session responses back to requesters on the appropriate connectionMost Voted
Correct Answer:
ACD
ACD

In a shared server configuration, dispatchers perform several crucial roles. Firstly, they receive inbound requests from clients, which is central to their function. Once a request is received, dispatchers are responsible for placing these requests into the common request queue where shared servers can access them. Furthermore, the requests are also routed to the appropriate shared server input queue to ensure they are processed efficiently. Choices like managing individual connection queues or broadcasting responses to all connections are not functions performed by dispatchers in this context.
send
light_mode
delete
All Pages