InterviewSolution
Saved Bookmarks
| 1. |
In component based programming, a component may have ____(a) only one subunit(b) only one class(c) one or more subunits(d) one or more classesThis question was posed to me at a job interview.I want to ask this question from Software Architecture in chapter Software Defined Radio Architecture of Cognitive Radio |
|
Answer» RIGHT OPTION is (d) one or more classes The explanation is: Component based programming is an extension of object oriented programming. A component is the BASIC unit of component based programming and MAY have one or more classes. It is defined by functionality and INTERFACES. |
|