Statement Cache Type
Logging Last Resource
Algorithm Type
Failover Request if Busy
JNDI Name
第1题:
The way in which people address each other depends on their age, sex, social group and personal relationship. The English system of address forms frequently used includes first name, last name, title+last name, (), and kin term.
Atitle+first name
Btitle+title
Ctitle alone
Dfirst name+last name+title
第2题:
下面哪项可以准确地获取请求页面的一个名称为name的文本框的输入。()
第3题:
What is the last step in setting up a Primary Domain Name Server?()
第4题:
Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key FIRST_NAME VARCHAR2(25) LAST_NAME VARCHAR2(25) Which three statements inserts a row into the table? ()
第5题:
You are configuring the data source for an Oracle database. You will need to specify a test table for WebLogic to test the status of the database. Which option should you choose?()
第6题:
Examine the structure of the EMPLOYEES table: Column name Data type Remarks EMPLOYEE_ID NUMBER NOT NULL, Primary Key LAST_NAME VARCNAR2(30) FIRST_NAME VARCNAR2(30) JOB_ID NUMBER SAL NUMBER MGR_ID NUMBER References EMPLOYEE_ID column DEPARTMENT_ID NUMBER You need to create an index called NAME_IDX on the first name and last name fields of the EMPLOYEES table. Which SQL statement would you use to perform this task? ()
第7题:
How can you configure High Availability for interacting with a non-Oracle database using WebLogic?()
第8题:
You are designing a name resolution strategy for the retail outlets to ensure that the existing bandwidth is used efficiently. Which three actions should you perform?()
第9题:
INSERT INTO employees VALUES ( NULL, ‘John’,‘Smith’);
INSERT INTO employees( first_name, last_name) VALUES(‘John’,‘Smith’);
INSERT INTO employees VALUES (‘1000’,‘John’,NULL);
INSERT INTO employees(first_name,last_name, employee_id) VALUES ( 1000, ‘John’,‘Smith’);
INSERT INTO employees (employee_id) VALUES (1000);
INSERT INTO employees (employee_id, first_name, last_name) VALUES ( 1000, ‘John’,‘’);
第10题:
Configure multiple physical data sources and reuse the same JNDI name for each.
Use the compatibility option of Active GridLink to enable compatibility with non-Oracle databases.
Configure a single physical data source for each node in a database cluster and wrap it using Multi Data Source.
Configure a Data Source Group that contains a physical connection pool to each node in the database cluster.
第11题:
mydb is a service name.
test.us.oracle.com is a database name.
1521 is the listener port number.
mydb is a host name.
test.us.oracle.com is a net service name.
hr is a username.
test.us.oracle.com is an instance name.
第12题:
Configure the DNS server service on the terminal servers as caching-only servers.
Configure multiple sites to have site links and set up a specific replication schedule.
Configure the default site to have the subnets of Atlanta and the branch offices.
Create a new DNS zone and configure zone transfers to name servers only.
Create an application partition to be used for DNS
Specify the scope of replication to be used for DNS
第13题:
The way in which people address each other depends on their age, sex, social group and personal relationship. The English system of address forms frequently used includes first name, last name, title+last name, (), and kin term.
第14题:
下列选项中,()可以准确地获取请求页面的一个文本框的输入(文本框的名称为name)。
第15题:
A custom tag is defined to take three attributes. Which two correctly invoke the tag within a JSP page?()
第16题:
Which three statements inserts a row into the table?()
第17题:
You need to display the last names of those employees who have the letter "A" as the second character in their names. Which SQL statement displays the required results? ()
第18题:
You connected to the database using the following connection string: CONNECT hr/hr@test.us.oracle.com:1521/mydb Which three statements are correct regarding the connection string?()
第19题:
Name three attributes used to configure a multi-data source in Oracle WebLogic ()
第20题:
title+first name
title+title
title alone
first name+last name+title
第21题:
INSERT INTO employees VALUES ( NULL, 'John', 'Smith');
INSERT INTO employees( first_name, last_name) VALUES( 'John', 'Smith');
INSERT INTO employees VALUES ( '1000', 'John', NULL);
INSERT INTO employees (first_name, last_name, employee_id) VALUES ( 1000, 'John', 'Smith');
INSERT INTO employees (employee_id) VALUES (1000);
INSERT INTO employees (employee_id, first_name, last_name) VALUES ( 1000, 'John', ' ');
第22题:
Statement Cache Type
Logging Last Resource
Algorithm Type
Failover Request if Busy
JNDI Name
第23题:
HttpSession session = request.getSession();
HttpSession session = request.getSession(id);
HttpSession session = request.getSession(true);
HttpSession session = request.getSession(false);
HttpSession session = request.getSession(jsessionid);
第24题:
<prefix:myTag a=foo b=bar c=baz />
<prefix:myTag attributes={foo,bar,baz} />
<prefix:myTag jsp:attribute a=foo b=bar c=baz />
<prefix:myTag><jsp:attribute name=a>foo</jsp:attribute><jsp:attribute name=b>bar</jsp:attribute><jsp:attribute name=c>baz</jsp:attribute>. </prefix:myTag>