最新的Oracle Certified Professional, MySQL 5.6 Developer - 1z0-882免費考試真題

問題1
A complex query consists of eight populated tables that are all connected via INNER JOIN operands as shown:

You modify the query and replace the SELECT operand with SELECT STRAIGHT JOIN.
What is the effect of adding STRAIGHT JOINs to the query?

正確答案: C
問題2
Which three connector/J connection strings can be used to connect to the MYSQL server?

正確答案: C,D,E
問題3
The people table contains the data as shown:

Which two statements return two rows each?

正確答案: A,D
問題4
A floating- point column defined as FLOAT(7,5)allows___________

正確答案: D
問題5
Which two queries return a value of NULL?

正確答案: B,D
問題6
Identity two ways to configure a PHP application to use the UTF8 character set.

正確答案: C,D
說明:(僅 VCESoft 成員可見)
問題7
You started a MySQL command -line session with sq1_ mode (empty), and created the person table with the
structure:
Mysql> DESC person;

You issue:
INSERT INTO person VALUES ('casper', 'undefined')
What is the effect?
正確答案:
問題8
Which two PHP modules provide APIs for developing MYSQL applications?

正確答案: A,B
說明:(僅 VCESoft 成員可見)
問題9
Your MYSQL server was successfully running for a days, and then suddenly stopped .You are sure that no mysqld
process is running.
Which two may provide diagnostic information to help determine why the MYSQL server stopped?

正確答案: D,E
問題10
Examine the fruit and wine tables:
Fruit

You execute this query:
SELECT fruited, fruitname FROM fruit
UNION
SELECT id, name, country FROM wine;
What is the result?

正確答案: A