A developer wants to print the value of the column “ID” of the first row from a data table variable “DT” using a Log Message activity. What value should the field Message from the Log Message activity have?
Answer is DT.Rows(0).Item("ID").ToString because it correctly accesses the first row and retrieves the value from the “ID” column as a string, which is required by the Log Message activity. Other options use incorrect syntax or reference non-existent properties.
You can report because some answers are incorrect.