Abs(x)Returns the absolute value of a number, or the modulus for complex numbers. For real numbers:|x| = x if x ≥ 0x if x < 0For complex numbers:|x| = r2 + i2Example = Block { ShowAbs(-3); ShowAbs(5); ShowAbs(3 + 2 Math.I);};The absolute value of -3 is 3.The absolute value of 5 is 5.The absolute value of 3+2i is 13.