• 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”);}
  • Share this MCQ