Answer:
B) The active methods in the opposite order that they were invoked .
Explanation:
Stack trace consists of the active methods.On calling it lists the methods that are active in the reverse order of the invocation because when a method is first invoked it goes into the stack first and due to the property of the stack that is it is a LIFO(Last In First Out) type data structure.It lists the first method at the last.