Refer to table 1.0 Using the SELECT statement below what would be the possible output:SELECT NAME, ORG, POSITION, ID * (100 + 3)FROM ORGCHARWHERE ORG = =E2=80=98AMATHS'
It will retrieve the record of ANNA with new ID of 10
It will retrieve the record of ANNA with new ID of 1003
It will retrieve the record of ANNA with new ID of 1030Correct