public int hashCode()
public boolean equals(Key k)
public int compareTo(Object o)
public boolean equals(Object o)
public boolean compareTo(Key k)
第1题:
Which statement is true about a certificate authority?()
第2题:
public class Person { private name; public Person(String name) { this.name = name; } public int hashCode() { return 420; } } Which is true?()
第3题:
public class X { public X aMethod() { return this;} } public class Y extends X { } Which two methods can be added to the definition of class Y?()
第4题:
public class Key { private long id1; private long 1d2; // class Key methods } A programmer is developing a class Key, that will be used as a key in a standard java.util.HashMap. Which two methods should be overridden to assure that Key works correctly as a key?()
第5题:
Which two statements about the Diffie-Hellman (DH) key exchange process are correct?()
第6题:
Which two statements regarding asymmetric key encryption are true?()
第7题:
You are developing a Windows Presentation Foundation (WPF) application The application is for commercial use and requires a valid license key to be entered. You create a project type of Class Library code to validate license keys You need to ensure that the user enters a valid license key during installation of the software. Which deployment should reference the class library?()
第8题:
PKI的全称是()。
第9题:
The same key is used for encryption and decryption.
It is commonly used to create digital certificate signatures.
It uses two keys: one for encryption and a different key for decryption.
An attacker can decrypt data if the attacker captures the key used for encryption
第10题:
An entity responsible for registering the private key encryption used in a PKI
An agency responsible for granting and revoking public-private key pairs
A trusted third party responsible for signing the public keys of entities in a PKIbased system
A trusted third party responsible for signing the private keys of entities in a PKIbased system
第11题:
In the DH key exchange process, the session key is never passed across the network.
In the DH key exchange process, the public and private keys are mathematically related using the DH algorithm.
In the DH key exchange process, the session key is passed across the network to the peer for confirmation.
In the DH key exchange process, the public and private keys are not mathematically related, ensuring higher security
第12题:
The same key is used for encryption and decryption.
It is commonly used to create digital certificate signatures.
It uses two keys: one for encryption and a different key for decryption.
An attacker can decrypt data if the attacker captures the key used for encryption.
第13题:
Which of the following authenticates a web server to the remote client in PKI?()
第14题:
PKI是()。
第15题:
public class Parent { int change() {…} } class Child extends Parent { } Which methods can be added into class Child?()
第16题:
Which two statements about the Diffie-Hellman (DH) key exchange process are correct? ()(Choose two.)
第17题:
Which two statements regarding symmetric key encryption are true?() (Choose two.)
第18题:
Which three statements are true?()
第19题:
You need to select a class that is optimized for key-based item retrieval from both small and large collections. Which class should you choose?()
第20题:
PKI是()。
第21题:
A
B
C
D
第22题:
In the DH key exchange process, the session key is never passed across the network.
In the DH key exchange process, the public and private keys are mathematically related using the DH algorithm.
In the DH key exchange process, the session key is passed across the network to the peer for confirmation.
In the DH key exchange process, the public and private keys are not mathematically related, ensuring higher security
第23题:
A final method in class X can be abstract if and only if X is abstract.
A protected method in class X can be overridden by any subclass of X.
A private static method can be called only within other static methods in class X.
A non-static public final method in class X can be overridden in any subclass of X.
A public static method in class X can be called by a subclass of X without explicitly referencing the class X.
A method with the same signature as a private final method in class X can be implemented in a subclass of X.
A protected method in class X can be overridden by a subclass of X only if the subclass is in the same package as X.