Which snippet of code should be used?

CORRECT TEXT

A developer is asked to write a log containing the ID and name of the product with a variable named myProduct.

Which snippet of code should be used?

A Logger.warn(‘The current producto is {0} with name {1}’, myProduct.getID(), myProduct.getName());

B Logger.warn(‘The current producto is {0} with name {1}’), context(myProduct.getID(),

myProduct.getName());

C Logger.warn(‘The current producto is ${myProduct.getID()} with name ${myProduct.getName()}’);

D Logger.warn(‘The current producto is %s with name %s’), context(myProduct.getID(), myProduct.getName());

Answer: A

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments