What type of risk assessment uses tools such as the one shown with 4 boxes of risk using probability and level of impact as variables?
A. Quantitative
B. Loss expectancy
C. Financial
D. Qualitative
Answer: D. Qualitative
Computer Science & Information Technology
You might also like to view...
________ are programs that you can carry with you and run from a flash drive
Fill in the blank(s) with correct word
Computer Science & Information Technology
What is the output of the following code?
``` public class Test { public static void main(String[] args) { new Person().printPerson(); new Student().printPerson(); } } class Student extends Person { private String getInfo() { return "Student"; } } class Person { private String getInfo() { return "Person"; } public void printPerson() { System.out.println(getInfo()); } } ``` a. Person Person b. Person Student c. Stduent Student d. Student Person
Computer Science & Information Technology