Select from following answers:- if (i==5)

- if i=5 then
- if i=5
- if i==5 then
- All Above
Answer is if(i==5).
if i=5 then -> Is used in VBscript.
For ex:-
function cal(val)
{
if(val==5)
{
alert('value is 5');
}
}
Condition checking is same as C#.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator