Just don't mix double quotes and single quotes in the same CLI command:
CREATE TABLE db.test
(
fname STRING,
lname STRING,
age STRING,
mob BIGINT
) row format delimited fields terminated BY '\t' tblproperties('skip.header.line.count'='1') stored AS textfile;
otherwise hive load NULL values.