What output will be given by the following query?
select
len(a),
len(b),
convert(varchar(10), a),
convert(varchar(10), b),
ascii(substring(a, 2, 1)),
ascii(substring(b, 2, 1))
from (
select
a = convert(varbinary(10), convert(varchar(10), 'a')),
b = convert(...