process(bytes);
BitUtils.process(bytes);
util.BitUtils.process(bytes);
SomeApp cannot use methods in BitUtils.
import util.BitUtils.*; process(bytes);
第1题:
Which two statements are correct about database transportation?()
第2题:
A member variable defined in a class can be accessed only by the classes in the same package. Which modifier should be used to obtain the access control?()
第3题:
User defined locale files can be stored in which two locations?()
第4题:
It is desirable that a certain method within a certain class can only be accessed by classes that are defined within the same package as the class of the method. How can such restrictions be enforced?()
第5题:
Which two statements are true regarding a PL/SQL package body?()
第6题:
Mark the method with the keyword public.
Mark the method with the keyword protected.
Mark the method with the keyword private.
Mark the method with the keyword package.
Do not mark the method with any accessibility modifiers.
第7题:
process(bytes);
BitUtils.process(bytes);
app.BitUtils.process(bytes);
util.BitUtils.process(bytes);
importutil.BitUtils.*;process(bytes);
SomeApp cannot use the process method in BitUtils.
第8题:
A must contain all of the characters defined in B
A must be Unicode
The encoded values in A must match the encoded values in B for all characters defined in B
A must be a multibyte character set
The encoded values in A must match the encoded values in B for all numeric and alphabetic characters in B
第9题:
private
no modifier
public
protected
第10题:
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.
第11题:
DRAM
SDRAM
CME flash,slot0
CUE flash,slot0
TFTP directory specified by cnf-file location command
第12题:
process(bytes);
BitUtils.process(bytes);
util.BitUtils.process(bytes);
SomeApp cannot use methods in BitUtils.
import util.BitUtils.*; process(bytes);
第13题:
Given a file GrizzlyBear.java: 1. package animals.mammals; 2. 3. public class GrizzlyBear extends Bear { 4. void hunt() { 5. Salmon s = findSalmon(); 6. s.consume(); 7. } 8. } and another file, Salmon.java: 1. package animals.fish; 2. 3. public class Salmon extends Fish { 4. void consume() { /* do stuff */ } 5. } Assume both classes are defined in the correct directories for theft packages, and that the Mammal class correctly defines the findSalmon() method. Which two changes allow this code to compile correctly?()
第14题:
Which two statements are true of login classes?()
第15题:
Given that b and c refer to instances of wrapper classes, which two statements are true?()
第16题:
In which two web application directories can dependent classes and libraries be located? ()
第17题:
The source and target platforms must be the same
Redo logs, control files and temp files are also transported
The transported database must have the same database identifier (DBID) as the source database and cannot be changed
The COMPATIBLE parameter must be set to 10.0.0.0 or higher and the database must be opened in readonly mode before being transported
Recovery Manager (RMAN) is used to convert the necessary data files of the database if the target platform is different and has different endian format
第18题:
process(bytes);
BitUtils.process(bytes);
util.BitUtils.process(bytes);
SomeApp cannot use methods in BitUtils.
import util.BitUtils.*; process(bytes);
第19题:
process(bytes);
BitUtils.process(bytes);
app.BitUtils.process(bytes);
util.BitUtils.process(bytes);
import util.BitUtils. *; process(bytes);
SomeApp cannot use the process method in BitUtils.
第20题:
It cannot be created without a package specification.
It cannot invoke subprograms defined in other packages.
It can contain only the subprograms defined in the package specification.
It can be changed and recompiled without making the package specification invalid.
第21题:
/WEB-INF/lib as a JAR file
/META-INF/lib as a JAR file
/classes as compiled class files
/WEB-INF/lib as compiled class files
/WEB-INF/classes as compiled class files
/META-INF/classes as compiled class files
第22题:
Users can be members of multiple login classes.
Login classes define authorization parameters for a user.
There are five system-defined login classes.
Login class permission flags can be overridden for certain commands.
第23题:
Permissions are configured individually for each user.
Users are associated with user classes, and each class defines the permissions for entering commands.
There are four default classes with different permissions and you can only use these four.
Permissions are associated with each user ID
第24题:
process(bytes);
BitUtils.process(bytes);
app.BitUtils.process(bytes);
util.BitUtils.process(bytes);
import util.BitUtils.*; process(bytes);
SomeApp cannot use the process method in BitUtils.