From:
Netmagicsolutions
Views: 65
Comments: 0
With a dedicated server, your web site will have all the resources dedicated completely to your web site. Dedicated servers also allow you to install other software on your own instead of waiting for your host to install them for you.
Dedicated hosting services in India are generally apt for organizations aiming to host dedicated mail servers, dedicated web servers, database servers, dedicated applications, live streaming, corporate extranets and intranets, broadcast machines and (more)
Dedicated hosting services in India are generally apt for organizations aiming to host dedicated mail servers, dedicated web servers, database servers, dedicated applications, live streaming, corporate extranets and intranets, broadcast machines and many others. (less)
Slide 1: DEMO EXAM
http://www.testkingworld.com Scroll Down
Slide 2: TK
Exam Name: Exam Type Exam Code:
Oracle 11i Applications DBA: Fundamentals I Oracle 1z0-235
Total Questions:
108
Question: 1 You receive the following error while connecting to an Oracle9i database instance: ORA-12523 TNS:listener could not find instance appropriate for the client connection Which action would be appropriate in the context of investigating the cause of error? A. checking the listener.ora file to verify that the protocol specified in ADDRESS is supported by the database server B. checking the sqlnet.ora file to verify that the NAMES.DIRECTORY_PATH = (TNSNAMES,HOSTNAME)parameter is set C. executing the lsnrctl services command to verify that the instances are registered with the listener, and have the READY status. D. checking the tnsnames.ora file to verify that the net service name specified in your connect string is mapped to a connect descriptor Answer: C Question: 2 You are using rollback segments in your database. To ease transaction management, you want to implement automatic undo management by using the following steps: 1. creating an undo tablespace 2. setting the UNDO_MANAGEMENT parameter to AUTO in the parameter file 3. changing the tablespace that has the rollback segments to an undo tablespace by using the ALTER TABLESPACE command 4. setting the UNDO_TABLESPACE parameter to the tablespace that has the rollback segments 5. dropping the rollback segments and create undo segments in the same tablespace that has the rollback segments Which option would you use? A. 3 only B. 1 and 2 only C. 2 and 3 only D. 3 and 5 only E. 2 and 5 only Answer: B Question: 3 You specified extent management as local for a tablespace. How will this affect space management in the tablespace? A. Bitmap will be used to record free and allocated extents. B. Free extents will be managed by the data dictionary tables. C. The tablespace can have extents containing blocks of different sizes. D. The tablespace will be system managed and the users cannot specify the extent size. Answer: A Question: 4 Which statement regarding the KEEP buffer pool is true assuming that it is sized correctly? A. The buffer pool can be used for data blocks of standard size only. B. The buffer pool can be used for data blocks of both standard and nonstandard sizes. C. The buffer pool eliminates data blocks from memory when they are no longer needed.
Page 1 of 31
Slide 3: TK
Exam Name: Exam Type Exam Code:
Oracle 11i Applications DBA: Fundamentals I Oracle 1z0-235
Total Questions:
108
D. The buffer pool holds data blocks from schema objects that are not assigned to any buffer pool. Answer: A Question: 5 Which two statements are true regarding object privileges? (Choose two.) A. The privileges cannot be granted to a user in the form of a role. B. The object owner can grant the privileges to any other user in the database. C. Any user that has the GRANT ANY OBJECT PRIVILEGE can grant the privileges on behalf of the object owner. D. The grantee of the privileges with WITH GRANT OPTION can revoke the same privileges from any other user irrespective of its grantor. Answer: B, C Question: 6 Which two statements are true regarding the temporary tablespace? (Choose two.) A. Used for sort operations B. Can contain permanent objects C. Cannot be shared by multiple users D. Cannot be created with nonstandard block size specification Answer: A, D Question: 7 You want to reuse all the existing data files, control files, and redo log files to re-create your test database. You execute the following command to create the database: CREATE DATABASE testdb DATAFILE '/u01/oradata/testdb/system01.dbf' SIZE 100M REUSE LOGFILE GROUP 1 ('/u01/oradata/testdb/log1a.rdo', '/u02/oradata/testdb/log1b.rdo') SIZE 50K REUSE, GROUP 2 ('/u01/oradata/testdb/log2a.rdo', '/u02/oradata/testdb/log2b.rdo') SIZE 50K REUSE MAXLOGFILES 5 MAXLOGHISTORY 100 MAXDATAFILES 10; The command fails to create the database successfully. What could be the reason? A. You have set MAXLOGFILES to a very low value. B. You cannot reuse the online redo log files. C. You have omitted the CONTROLFILE REUSE clause. D. You cannot reuse the data file belonging to the SYSTEM tablespace. Answer: C Question: 8 Which three statements are correct regarding the listener process? (Choose three.)
Page 2 of 31
Slide 4: TK
Exam Name: Exam Type Exam Code:
Oracle 11i Applications DBA: Fundamentals I Oracle 1z0-235
Total Questions:
108
A. A listener can be configured to listen for multiple protocols. B. Multiple listeners cannot listen on behalf of a single database. C. The name of the listener should be unique per listener.ora file. D. A listener can listen for a single database only and not multiple databases. E. The listener transfers the connection request to a dispatcher in a Shared Server configuration. F. The listener transfers the connection request to the Connection Manager in a Dedicated Server configuration. Answer: A, C, E Question: 9 Examine the value set for the NAMES.DIRECTORY_PATH parameter in the sqlnet.ora file.
You are working in a TCP/IP network environment. What will happen when you try to connect to the database from a remote client? A. The local naming method will be used first to resolve a connect identifier. B. It will result in an error because two values cannot be specified for the NAMES.DIRECTORY_PATH parameter. C. If the local naming method is unable to resolve the connect identifier, then Oracle Names server will be used to resolve the connect identifier. D. If the host naming method is unable to resolve the connect identifier, then the net service name stored in a centralized LDAP-compliant directory server is used to resolve the connect identifier. Answer: A Question: 10 You are working in a dedicated server environment. You require the PMON process to register with a local listener, lsnr1, which does not use TCP/IP, port 1521. The protocol address of lsnr1 is available in the listener.ora file. What would you do? A. configure the LOCAL_LISTENER parameter in the initialization parameter file B. configure the SID_LIST_LSNR1 parameter in the listener.ora file C. execute the lsnrctl set command with the appropriate parameter to set the correct instance names D. no explicit action required because the protocol address of the listener is available in the listener.ora file
Page 3 of 31
Slide 5: TK
Exam Name: Exam Type Exam Code:
Oracle 11i Applications DBA: Fundamentals I Oracle 1z0-235
Total Questions:
108
Answer: A Question: 11 You executed the following command to grant the CONNECT role to the USER01 user: SQL> GRANT connect to USER01 WITH ADMIN OPTION; Which statement is true? A. The user can grant the role to any database user but cannot revoke it. B. The user can grant or revoke the role to or from any database user. C. The user can revoke the role from any database user but cannot grant it. D. The statement fails because the CONNECT role cannot be granted with WITH ADMIN OPTION. E. The user can grant or revoke the role to or from any database user except the SYS and SYSTEM users. Answer: B Question: 12 Which Oracle data type should you use to store data in a database that uses multiple languages to store data? A. LONG B. CHAR C. VARCHAR D. VARCHAR2 E. NVARCHAR2 Answer: E Question: 13 You executed the following command to create an index on CUSTOMER_ID and ITEMS_ID columns in the ORDERS table: SQL> CREATE INDEX orders_prim_indx ON orders (customer_id, items_id); In which two conditions would a query use this index? (Choose two.) A. when both the columns are used in the WHERE clause of the query B. when both the columns are used in the SELECT clause of the query C. when the CUSTOMER_ID column is used in the WHERE clause of the query D. when the ITEMS_ID column is used with a single row function in the WHERE clause of the query Answer: A, C Question: 14 When is the control file opened? A. after the data files are opened B. after the parameter file is opened C. after the redo log files are opened D. after the parameter file, data files, and redo log files are opened E. before the parameter file, data files, and redo log files are opened
Page 4 of 31
Slide 6: Testking $79 Lifetime Membership Features;
Testking $79 Lifetime Membership Package includes over 1700 Exams. All Testking questions and answers are included in $79 package. All Testking audio exams are included free in $79 package. All Testking study guides are included free in $79 package. Lifetime login access. Free updates for Lifetime. Free Download Access to All new exams added in future. Accurate answers with explanations. Questions accompanied by exhibits (If applicable) Verified answers researched by industry experts. Study Material updated on regular basis. Questions, Answers and Study Guides are downloadable in PDF format. Audio Exams are downloadable in MP3 format. No authorization code required to open exam. Portable anywhere. 100% success Guarantee. Fast, helpful support 24x7.
View list of All exams (Q&A) downloads http://www.testkingworld.com/testking-questions-answers.asp View list of All Study Guides (SG) downloads http://www.testkingworld.com/testking-study-guides.asp View list of All Audio Exams (AE) downloads http://www.testkingworld.com/testking-audio-certifications.asp Download All Exams Samples http://www.testkingworld.com/testking-samples.asp To purchase $79 Lifetime Full Access Membership click here http://www.testkingworld.com/purchase.asp
3COM ADOBE APC Apple BEA BICSI CheckPoint Cisco Citrix CIW CompTIA ComputerAssociates CWNP DELL ECCouncil EMC Enterasys ExamExpress Exin ExtremeNetworks Filemaker Fortinet Foundry Fujitsu GuidanceSoftware HDI Hitachi HP Huawei Hyperion IBM IISFA Intel ISACA ISC2 ISEB ISM Juniper Legato Lotus LPI McAfee McData Mile2 NetworkAppliance Network-General Nokia Nortel Novell OMG Oracle PMI Polycom RedHat Sair SASInstitute SCP See-Beyond SNIA Sun Sybase Symantec TeraData TIA Tibco TruSecure Veritas Vmware
(SAMPLE EXAM) Note: Sample Exam is for DEMO purpose only it can be out-of-date. Full Version is up-to-date.