D365 F&O MCQ Questions - X++ Programming Language MCQ - Quiz

  • AOnly at the beginning of a method
  • BOnly at the beginning of a class declaration
  • CAnywhere in the code (“in-line”)
  • DAnywhere within a form
  • A
    a)	If(InputDate != datenull()){ Throw error(“Wrong selection of date”);}Else If(inputDate > systemDateGet()){Throw error(“Wrong selection of date”);}
  • B
    b)	If(InputDate == datenull() || inputDate > systemDateGet()){      Throw error(“Wrong selection of date”);}
  • C
    c)	If(InputDate != datenull()){    Throw error(“Wrong selection of date”);    If(inputDate > systemDateGet())    {         Throw error(“Wrong selection of date”);    }}
  • D
    d)	If(InputDate != datenull()){   Throw error(“Wrong selection of date”);}If(inputDate > systemDateGet()){  Throw error(“Wrong selection of date”);}
  • AMake it complicated
  • BAlways keep it the same
  • C Keep it simple
  • ACreate a new entity and copy all the properties from VendorInvoiceLineEntity.
  • BExtend VendorInvoiceLineEntity.
  • COverlayer your changes on the existing VendorInvoiceLineEntity.
  • DEdit VendorInvoiceLineEntity directly.
  • AOverlayering-based development
  • BLegacy development
  • CExtension-based development
  • DNone of the above