Which of the following does a DoS attack target?
a. Confidentiality
b. Security
c. Integrity
d. Availability
ANS: D
You might also like to view...
Analyze the following code.
```
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.stage.Stage;
public class Test extends Application {
@Override // Override the start method in the Application class
public void start(Stage primaryStage) {
Button btOK = new Button("OK");
btOK.setOnAction(new EventHandler
What allows an application to implement an encryption algorithm for execution?
A. counters B. crypto service providers C. initialization vectors D. crypto modules