How could you most efficiently debug this issue?

You are debugging an application module method that seems to be causing an error when the
argument value is anything but “2”. How could you most efficiently debug this issue?

You are debugging an application module method that seems to be causing an error when the
argument value is anything but “2”. How could you most efficiently debug this issue?

A.
Set a breakpoint on the first line of the method implementation and set the breakpoint property
to break only for threads named oracie.jbo.Exception.

B.
Set a breakpoint on the first line of the method implementation and set the breakpoint pass
count property to 2.

C.
Set a breakpoint on the first line of the method implementation and set the breakpoint condition
to arg ! = 2.

D.
Set a breakpoint on the method declaration (where the argument is defined) and step through
the breakpoint at execution to determine the argument value.

E.
Set a breakpoint on the method declaration (where the argument is defined) and set the
condition to arg = = 2.

Explanation:



Leave a Reply 5

Your email address will not be published. Required fields are marked *


Abdullah

Abdullah

causing an error when the argument value is anything but “2″
So the most efficient way to debug is: C

achilles

achilles

few people are posting A!! not sure!

allansantos

allansantos

The answer is C. The question says [… value is anything but “2”]