Answer:
// this will be the output of the following statement.
name age height
Archie 17 5'9"
Betty 17 5'6"
Jughead 16 6'
Explanation:
First print statement will print name, age and height separated by a tab space. Then next print statement print Archie, 17 and 5'9" separated by a tab space in new line.Similarly third print statement will print Betty, 17 and 5'6" and in new line the last print statement will print Jughead,16 and 6' separated by a tab space in the next line.