The stub will increase network traffic.
The Transfer Object will decrease data staleness.
The stub will increase the logic necessary in the JSPs.
In both cases, the JSPs can use EL expressions to get data.
Only the Transfer Object will need to use a Business Delegate.
第1题:
You run a Windows Defender scan on your computer system. The scan identifies one of your applications as having potentially unwanted behavior. You need to continue to use the application. You also need to stop Windows Defender from alerting you about this application. Which Windows Defender option should you use? ()
第2题:
You are the network consultant from passguide.com. In which situation you will advice your customer to implement data centers?()
第3题:
You want to create a valid directory structure for your Java EE web application, and you want to put yourweb application into a WAR file called MyApp.war. Which two are true about the WAR file?()
第4题:
You plan to move data from a flat file to a table in your database. You decide to use SQL*Loader direct pathload method to perform this task. The table in which you plan to load data is an important table having variousintegrity constraints defined on it. Which constraints will remain enabled by default during this operation()
第5题:
You work as a database administrator for Supportcenter.cn. You suspect that in one of your applications the customer table is being accessed by some unauthorized users. Which option would you use to monitor the queries being executed on the customer table?()
第6题:
Your company uses a SQL Server 2005 database. Customer data from your trading partners is imported into the Customers table every night. You need to ensure that the customer record is updated if it already exists in the Customers table. If the record does not exist, the data needs to be inserted into the Customers table. What should you do?()
第7题:
Segment Advisor
SQL Tuning Advisor
SQL Access Advisor
Segment Resource Estimation
Automatic Database Diagnostic Monitor (ADDM)
第8题:
At deploy time, Java EE containers add a directory called META-INF directly into the MyApp directory.
At deploy time, Java EE containers add a file called MANIFEST.MF directly into the MyApp directory.
It can instruct your Java EE container to verify, at deploy time, whether you have properly configured your application’s classes.
At deploy time, Java EE containers add a directory call META-WAR directly into the MyApp directory.
第9题:
An increased need for specialized IT silos
Protecting the business from information outages
IT systems grow fast
Optimizing the efficiency with which IT operates
第10题:
第11题:
Implement the validation rules inside the Validating event handler of each TextBox control by throwing an exception when the value is invalid.
Implement the validation rules inside the TextChanged event handler of each TextBox control by throwing an exception when the value is invalid.
Implement the validation rules inside the setter of each property of the Customer class by throwing an exception when the value is invalid.
Add the following code segment to the InitializeComponent method of the Windows Form. this.errorProvider.DataSource = this.customerBindingSource;
Add the following code segment to the InitializeComponent method of the Windows Form. this.errorProvider.DataSource = this.customerBindingSource.DataSource; this.errorProvider.DataMember = this.customerBindingSource.DataMember;
第12题:
Your deployment descriptor will need to contain this tag: CUSTOM.
The related custom HTML login page must be named loginPage.html.
When you use this type of authentication, SSL is turned on automatically.
You must have a tag in your deployment descriptor that allows you to point to both a login HTML pageand an HTML page for handling any login errors.
In the HTML related to authentication for this application, you must use predefined variable names fort he variables that store the user and password values.
第13题:
If you want to use the Java EE platform’s built-in type of authentication that uses a custom HTML page for authentication. Which two statements are true?()
第14题:
You are designing an n-tier Java EE application. You have already decided that some of your JSPs willneed to get data from a Customer entity bean. You are trying to decide whether to use a Customer stubobject or a Transfer Object. Which two statements are true?()
第15题:
You have a firewall filter applied in an inbound direction on a customer interface. You would like this filter to protect your network from a spoofed denial of service attack. Which action should be configured to accomplish your goal?()
第16题:
You are using flat files as the data source for one of your data warehousing applications. You plan to move the data from the flat file structures to an Oracle database to optimize the application performance. In your database you have clustered tables. While migrating the data, you want to have minimal impact on the database performance and optimize the data load operation. Which method would you use to load data into Oracle database?()
第17题:
Flashback Database is enabled in your Oracle 10g database. One of your database users erroneously purged an important table residing in his schema. The table was purged sometime between 10:00 P.M. and 10:30 P.M. The next day, you decide to flash back the database. Before you flash back the database, you want to ensure that you have all the necessary flashback data. Which dynamic performance view must you use to determine whether you have the required flashback data to recover the purged table?()
第18题:
A
B
C
D
第19题:
第20题:
Create a FOR trigger.
Create an INSTEAD OF trigger.
Create an AFTER trigger.
Create a DDL trigger.
第21题:
The stub will increase network traffic.
The Transfer Object will decrease data staleness.
The stub will increase the logic necessary in the JSPs.
In both cases, the JSPs can use EL expressions to get data.
Only the Transfer Object will need to use a Business Delegate.
第22题:
CHECK
UNIQUE
NOT NULL
PRIMARY KEY
FOREIGN KEY
第23题:
ALTER TABLE OrdersDISABLE TRIGGER trg InsertOrders
DROP TRIGGER trg InsertOrders
DISABLE TRIGGER trg InsertOrders ON Orders
ALTER TRIGGER trg InsertOrders ON Orders NOT FOR REPLICATION