b.equals(b) returns true.
b.equals(c) returns the same result as b == c.
b.eqials(c) can return false even if c.equals(b) returns true.
b.equals(c) throws an exception if b and c are different wrapper types.
b.equals(c) returns false if the type of wrapper objects being compared are different.
第1题:
Given that b and c refer to instances of wrapper classes, which two statements are true?()
第2题:
10. public class MyClass { 11. 12. public Integer startingI; 13. public void methodA() { 14. Integer i = new Integer(25); 15. startingI = i; 16. methodB(i); 17. } 18. private void methodB(Integer i2) { 19. i2 = i2.intValue(); 20. 21. } 22. } If methodA is invoked, which two are true at line 20?()
第3题:
Which four statements correctly describe functions that are available in SQL? ()
第4题:
Identify the two situations in which you use the alert log file in your database to check the details.()
第5题:
Which two statements are true about standard database auditing()
第6题:
Which two statements are true regarding single row functions?()
第7题:
INSTR returns the numeric position of a named character.
NVL2 returns the first non-null expression in the expression list.
TRUNCATE rounds the column, expression, or value to n decimal places.
DECODE translates an expression after comparing it to each search value.
TRIM trims the heading of trailing characters (or both) from a character string.
NVL compares two expressions and returns null if they are equal, or the first expression of they are not equal.
NULLIF compares twp expressions and returns null if they are equal, or the first expression if they are not equal.
第8题:
INSTR returns the numeric position of a named character.
NVL2 returns the first non-null expression in the expression list.
TRUNCATE rounds the column, expression, or value to n decimal places.
DECODE translates an expression after comparing it to each search value.
TRIM trims the heading or trailing characters (or both) from a character string.
NVL compares two expressions and returns null if they are equal, or the first expression if they are not equal.
NULLIF compares two expressions and returns null if they are equal, or the first expression if they are not equal.
第9题:
Running a query on a table returns ORA-600: Internal Error.
Inserting a value in a table returns ORA-01722: invalid number.
Creating a table returns ORA-00955: name is already used by an existing object.
Inserting a value in a table returns ORA-00001: unique constraint (SYS.PK_TECHP) violated.
Inserting a row in a table returns ORA-00060: deadlock detected while waiting for resource.
第10题:
The nested query executes after the outer query returns the row.
The nested query executes first and then the outer query executes.
The outer query executes only once for the result returned by the inner query.
Each row returned by the outer query is evaluated for the results returned by the inner query.
第11题:
They accept only a single argument
They can be nested only to two levels
Arguments can only be column values or constants
They always return a single result row for every row of a queried table
They can return a data type value different from the one that is referenced
第12题:
b.equals(b) returns true.
b.equals(c) returns the same result as b == c.
b.eqials(c) can return false even if c.equals(b) returns true.
b.equals(c) throws an exception if b and c are different wrapper types.
b.equals(c) returns false if the type of wrapper objects being compared are different.
第13题:
Which of the following statements are true?()
第14题:
Which two statements are true about mouse button variables?()
第15题:
Evaluate these two SQL statements: SELECT last_name, salary , hire_date FROM EMPLOYEES ORDER BY salary DESC; SELECT last_name, salary , hire_date FROM EMPLOYEES ORDER BY 2 DESC; What is true about them?()
第16题:
Which statement is true regarding the COALESCE function?()
第17题:
Which four statements correctly describe functions that are available in SQL? ()
第18题:
The equals() method determines if reference values refer to the same object.
The == operator determines if the contents and type of two separate objects match.
The equals() method returns true only when the contents of two objects match.
The class File overrides equals() to return true if the contents and type of two separate objects match.
第19题:
If the hashCode values are different, the objects might be equal.
If the hashCode values are the same, the object must be equal.
If the hashCode values are the same, the objects might be equal.
If the hashCode values are different, the objects must be unequal.
第20题:
Tables with BLOB and TEXT columns cannot be partitioned
Partitioning allows easier management of smaller data sets for certain queries
Partitioning allows different columns to be stored in separate files
The partitioning expression is an integer or function that returns an integer value or NULL value
Partitioning is only available for those storage engines that implements it natively
第21题:
Yen returns correct values.
Euro returns correct values.
An exception is thrown at runtime.
Yen and Euro both return correct values.
Compilation fails because of an error at line 25.
Compilation fails because of an error at line 30.
第22题:
SYSTEM.MOUSE_BUTTON_PRESSED returns a string.
SYSTEM.MOUSE_BUTTON_PRESSED returns a numeric value. 1Z0-132 World Leaders In Certifications Material - Test-king.com
A possible value for SYSTEM.MOUSE_BUTTON_MODIFIERS is Control+Alt+Delete.
SYSTEM.MOUSE_BUTTON_MODIFIERS can only be references in form-level triggers.
SYSTEM.MOUSE_BUTTON_MODIFIERS identifies which special key was pressed in conjunction with the usual mouse button action.
第23题:
The two statements produce identical results.
The second statement returns a syntax error.
There is no need to specify DESC because the results are sorted in descending order by default.
The two statements can be made to produce identical results by adding a column alias for the salary column in the second SQL statement.
第24题:
i2 == startingI returns true.
i2 == startingI returns false.
i2.equals(startingI) returns true.
i2.equals(startingI) returns false.