Read the names of the variables and functions carefully. You…

Read the names of the variables and functions carefully. You may assume the script and/or functions are in the working directory and visible in the Command Window. scriptA.m: a = 5;b = 11; performCalculation.m: function ret = performCalculation(a, b) scriptA; ret = a + b;end Command Window: a = 17;b = 16;a = a + 1;b = b + 1;result = performCalculation(a, b); What is the value of a, b, and result in the base workspace?