Answer the following questions true (T) or false (F)

1. UML was designed to be used with structured programming methodology.

2. Class diagrams must contain all class members.


1. False
2. False

Computer Science & Information Technology

You might also like to view...

The process of storing data moves it from the temporary RAM to a more permanent destination.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The getValue() method is overridden in two ways. Which one is correct?

``` I: public class Test { public static void main(String[] args) { A a = new A(); System.out.println(a.getValue()); } } class B { public String getValue() { return "Any object"; } } class A extends B { public Object getValue() { return "A string"; } } II: public class Test { public static void main(String[] args) { A a = new A(); System.out.println(a.getValue()); } } class B { public Object getValue() { return "Any object"; } } class A extends B { public String getValue() { return "A string"; } } ``` a. I b. II c. Both I and II d. Neither

Computer Science & Information Technology

Hard drive files are permanently deleted the moment someone presses the Delete key

Indicate whether the statement is true or false

Computer Science & Information Technology

Lin received 200 new laptops to be issued to company employees. Lin was asked to set them up and distribute them to everyone on a list provided by his supervisor. Lin has completed installing all the software on each computer and is ready to distribute them, but he needs to keep track of who received each laptop. ? How can Lin keep track of all the laptops?

A. Network topology diagram B. Knowledge database C. Inventory management documentation D. Acceptable use documentation

Computer Science & Information Technology