Which will be displayed after the following process is completed?

Start
Set x = 1
Set y = 2
Set z = 3
If ((x = 1) OR (y = 1) OR (z = 1)) then
Set ans = "T"
Else
Set ans = "F"
End if
Display ans
Stop

(Points : 2) True
False