<<< Previous question <<< Question ID#0065.md >>> Next question >>>
You run the following PHP script:
$num = -123test;
$newnum = abs($num);
print $newnum;
What will be the output?
- A) Script will throw an error.
- B) -123
- C) 0
- D) 123
Answer
Answer: A