Questions
What would be the output of the following SQL query?
SQL>select trunc(19.989776,1) from dual;
- 20.0
- 19.0
- 19.9
- None of these
Which of the following statements is used in SQL along with aggregate functions?
- Order by
- Union
- Group by
- None of these
What would be the output of the following SQL query?
SQL> select ltrim(' Harish') from dual;
- 'Hari'
- 'Rish'
- 'Harish'
- None of these
Which of the following is the default table available in SQL environment, used for mathematical calculation?
- emp
- dual
- dept
- none of these
Which of the following pools in System Global Area is a memory area used by the Oracle streams product for its functioning?
- Streams pool
- Large pool
- Java pool
- None of these
Which of the following areas in the Program Global Area, contains bind information and runtime memory structures?
- Session memory
- SQL work area
- Private SQL area
- None of these
______________ processes are created in Oracle to handle requests made by user processes.
- Background
- User
- Server
- None of these
Which of the following caches in SGA is responsible for storing and reusing frequently used SQL statements, their execution plans and stored procedures?
- Data dictionary cache
- Library cache
- Database buffer cache
- None of these
Which of the following views from Data Dictionary gives information about various database objects?
- USER_ALL_DBA_TABLES
- USER_ALL_DBA_OBJECTS
- USER_ALL_DBA_INDEXES
- None of these
Which of the following editions of Oracle9i prompts you to select individual components to instal from the components available?
- Enterprise edition
- Standard
- Personal edition
- Custom
Which of the following avoids the display of identical columns from two tables in an SQL query?
- Equi Join
- Non-Equi join
- Natural join
- None of these
In Redo Log file, which of the following files contains a number of parameters that can be used to configure the Oracle9i instance?
- The archive file
- The parameter file
- The password file
- None of these
Which of the following objects in SQL is a virtual table that draws its data from the result of an SQL SELECT statement?
- View
- Table
- Index
- None of these
Which of the following symbols is used to perform outer join operation in two tables?
- -
- *
- /
- +
Which of the levels in three-schema architecture describes the relationships exist among data?
- Internal level
- External level
- Conceptual level
- None of the above
Which of the following fragmentations requires the grouping of attributes into sets that are referenced in the similar manner by applications?
- Primary fragmentation
- Vertical fragmentation
- Horizontal fragmentation
- None of the above
Which of the following is the second layer in the query processing, responsible to localise the query's data using data distribution information?
- Global Query Optimisation
- Local Query Optimisation
- Data localisation
- None of the above
__________ is the SQL command, which provides object privileges to other users.
- Revoke
- Delete
- Grant
- Drop
Which of the following is the design approach, used in vertical fragmentation in which the global relations are progressively split into fragments?
- The split approach
- The grouping approach
- Top-down approach
- None of the above
Which of the following is the smallest unit of allocation in an Oracle database?
- Segment
- Extent
- Database block
- None of these
Which of the following SQL functions returns the last day of the month from the current date or date specified by the user?
- ADD_MONTHS()
- LAST_DAY()
- NEXT_DAY()
- MONTHS_BETWEEN()
In which of the following schemas of reference architecture for distributed database, each global relation is split into several non-overlapping portions that are called as fragments?
- Global schema
- Allocation schema
- Local mapping schema
- Fragmentation schema
Which of the following symbols is used to indicate selection operation in relation algebra?
- p
- s
- q
- �
Which of the following codes are executed / fired when certain actions or events occur?
- Cursors
- Database triggers
- Procedure
- None of these
Which of the following selects all the rows from one table whether they have corresponding matching rows in another table or not?
- Inner join
- Equi-join
- Non-equi join
- Outer join
Which of the following blocks in PL/SQL contains executable statements that are executed when the program is run?
- Declare
- Exception
- Begin
- None of these