A developer submits code for a quality assurance review. Several lines of code use the var data type.
You need to validate the segments tor the correct X++structure.
Which code statement will pass validation?
var var1 = systemDateGet (); var1 = var1 ? today(); ' ' No today ' ' ;
var var1 = true ? 10: ' ' 10 ' '
var var1 = true; var1 = true ? 10:falase;
var var1 = (var1 > = false) ? true :10;
Submit