Concept:For an ordered data set, the inter-quartile range is Q3−Q1, where Q1 and Q3 are found using their positions: 41(N+1) and 43(N+1).Explanation:The data is already arranged in ascending order: 1,3,4,5,8,9,10,11,12,14,16.Here, N=11.Position of Q1=41(11+1)=412=3.The third value is 4, so Q1=4.Position of Q3=43(11+1)=436=9.The ninth value is 12, so Q3=12.Therefore, inter-quartile range = Q3−Q1=12−4=8.Answer:8 (Option C).