Multiple choice technology programming languages

An Operation oper1 modeled in Component A Wants to call an Operation oper2 modeled in Component B, what association needs to be Modeled between two -

  1. oper1->canBeInvokedBy->oper2

  2. oper1-> InterModuleCallFrom->oper2

  3. oper1->owner->oper2

  4. oper1->InterModuleCall->oper2

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

When an operation in one component needs to invoke an operation in another component, the correct association is 'InterModuleCall' from the calling operation (oper1) to the called operation (oper2). This represents cross-component communication. The reverse direction (InterModuleCallFrom) would mean oper2 calls oper1, and canBeInvokedBy describes a passive dependency rather than an active call.