The correct answer is (b) a[] is for empty linear array while a{} is for empty cell array
Explanation: To initialise a cell array, named a, we use the syntax ‘a{}’. If we need to initialise a linear array, named a, we use the syntax ‘a[]’. This is pre-defined in MATLAB.