Which of the following is NOT a common network architecture type?

A) home area network (HAN) B) local area network (LAN)
C) personal area network (PAN) D) intraoffice area network (IAN)

D

Computer Science & Information Technology

You might also like to view...

When a database is opened, it's database objects are listed in the ________

A) Navigation Pane B) taskbar C) Ribbon D) Start menu

Computer Science & Information Technology

Find the error(s) in the following code. This code should append the numbers from 10 down to 1 to outputJTextArea.

``` 1 int counter = 10; 2 3 do 4 { 5 outputJTextArea.append( counter + "\n" ); 6 } 7 while ( counter > 1 ); 8 9 --counter; ```

Computer Science & Information Technology