C
CIW Enterprise Specialist
161 Questions
Question No. 1
Consider the following IDL definition:
module airtraffic
{
struct RadarInfo
{
string callSign; long speed; long heading;
}
interface Aircraft
{
setLocation (inout RadarInfo ri);
}
}
You want to use this IDL definition to allow clients to update the location of an aircraft by passing an instance of RadarInfo to the remote method. Which statement is true of your design?
Choose the correct option from the given list.
01 / 161