________ is a graphical language that allows people who design software systems to use an industry standard notation to represent them.

a. The Unified Graphical Language
b. The Unified Design Language
c. The Unified Modeling Language
d. None of the above


c. The Unified Modeling Language

Computer Science & Information Technology

You might also like to view...

A connectivity port which transfers data at speeds up to 10,000 Mbps is ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

You can ____ your own CDs or  DVDs and copy music and videos to MP3 players, phones, or other mobile devices

A. rip B. track C. burn D. cast

Computer Science & Information Technology

What command can be used to display IP addresses assigned to all network connections on a system?

A. msconfig B. netstat C. ipconfig D. netcfg32

Computer Science & Information Technology

Which statements are most accurate regarding the following classes?

```
class A {
  private int i;
  protected int j;
}

class B extends A {
  private int k;
  protected int m;

  // some methods omitted
}
```

a. In the class B, an instance method can only access i, j, k, m.
b. In the class B, an instance method can only access j, k, m.
c. In the class B, an instance method can only access j, m.
d. In the class B, an instance method can only access k, m.

Computer Science & Information Technology