i think the answer you are looking for is k=thousand
k stands for a thousand.
100 k
$145 K
50 K
yment in k means
The salary for the President was $25,000 per year when Polk was in the office.
144 k rupees
~90 - 120 k
15 k per month
start pay for fresh grad is 3.8 k,... then slowly increase... average would be 6 k
Could be in the range of 40-50 K / month
Declare Names[100], Salaries[100]Set Sum = 0Set Count1 = 0Set K = 1Write "Enter Employees Name and Salary."Write "Enter *,0 when done."Input Name, SalaryWhile Salary "0"Set Count1 = Count1 + 1Set Sum = Sum + SalaryWrite "Enter another Employee Name and Salary (enter *,0 when done)"Input Name, SalaryEnd WhileSet Average = Sum / Count1Set Count2 = 0Set Count3 = 0For K = 1 Step 1 to Count1If Salary[K] > Average ThenSet Count2 = Count2 + 1End IfIf Salary[K] < Average ThenSet Count3 = Count3 + 1End IfEnd ForWrite "The Average Salary is: $", AverageWrite "The number of Salaries Above theAverage Salary is:", Count2Write "The number of Salaries Below theAverage Salary is:", Count3