Multiple choice technology mainframe

Which of the following directives ‘comments out’ authoring notes in a PegaRULES Process Commander HTML object?

  1. /* This is a comment */

  2. // This is a comment

  3. {COMMENT This is a comment /}

  4. {COMMENT} This is a comment {/COMMENT}

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

PegaRULES Process Commander uses its own markup syntax for HTML objects, where comments are enclosed in {COMMENT} and {/COMMENT} tags. Standard programming comment syntax like /* */ or // are not recognized by the Pega engine. Option C has incorrect closing tag syntax.