What will be the output of below IsNumeric functions?

Select ISNUMERIC('=') as '=';
Select ISNUMERIC('-') as '-';
Select ISNUMERIC('+') as '+';
Select ISNUMERIC('/') as '/';
Select ISNUMERIC('*') as '*';
Select ISNUMERIC('$') as '$';

 Posted by vishalneeraj-24503 on 7/1/2014 | Category: Sql Server Interview questions | Views: 1814 | Points: 40
Select from following answers:
  1. 0,0,0,0,0,0
  2. 1,1,1,1,1,1
  3. 0,1,1,0,0,1
  4. 1,0,0,1,1,0
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response