Considering the following code segment:

if ( num <0) {

alert("It's a negative num.");

}

else {

alert("It's a non-negative num.");

}

What will be displayed if num=0?

It's a positive num.

It's a non-negative num.

It's a zero.

Nothing will be displayed.