Object Oriented Programming Using C++ - Section 5 Multiple Questions and Answers.
Exercise Questions ::
Object Oriented Programming
Published by:Michael Daani
17. | Which is true? |
| |
| A. | Sequential cohesion is slightly weaker than functional cohesion |
| B. | Sequential cohesion is slightly stronger than functional cohesion |
| C. | Sequential cohesion is much stronger than functional cohesion |
| D. | Neither sequential cohesion nor functional cohesion is stronger than the other |
|
|
Published by:Michael Daani
Published by:Michael Daani
19. | The statement double val[15]={44.123456}; |
| |
| A. | assigns the value 44.123456 to all members of the array val |
| B. | assigns the value 44.123456 to val[0] and 0 to the rest of the members |
| C. | gives an error message |
| D. | assigns the value 44.12345 to val[1] and val[5] |
|
|
Published by:Michael Daani
20. | Which of the following C++ expressions will find the square root of the number 16? |
| |
| A. | pow (16, 2) (b) root (16, 2) |
| B. | sqroot (16) |
| C. | sqrt (16, 2) |
| D. | sqrt (16) |
|
|
Published by:Michael Daani
«»