A loosely coupled system is __________ than a tightly coupled system.

a) less fault tolerant
b) more flexible
c) more efficient
d) more expensive


b) more flexible

Computer Science & Information Technology

You might also like to view...

What does the following code do? Assume that monthsJSpinner has been declared.

``` 1 private void createUserInterface() 2 { 3 yearsJSpinner.addChangeListener( 4 5 new ChangeListener() // anonymous inner class 6 { 7 // event handler called when yearsJSpinner is changed 8 public void stateChanged( ChangeEvent event ) 9 { 10 yearsJSpinnerStateChanged( event ); 11 } 12 13 } // end anonymous inner class 14 15 ); // end call to addChangeListener 16 17 } // end method createUserInterface 18 19 private void yearsJSpinnerStateChanged( ChangeEvent event ) 20 { 21 monthsJSpinner.setValue( new Integer( 1 ) ); 22 23 } // end method yearsJSpinnerStateChanged ```

Computer Science & Information Technology

Studying examples of attacks and malicious applications will NOT help forensics investigators

A) To better understand hacker methodologies B) To recognize where and what to look for C) To be able to profile hackers D) To better understand terrorist methodologies

Computer Science & Information Technology

Assignment operators appear at the top of the hierarchy in the operator precedence table.

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

Computer Science & Information Technology

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

1) The lines in an activity diagram are a graphical representation of an algorithm. 2) Control structures cannot be placed inside other control structures. 3) The if statement is a repetition statement. 4) During the 1960s, it became clear that the indiscriminate use of transfers of control was the root of much difficulty experienced by software development groups.

Computer Science & Information Technology