answersLogoWhite

0

What does K in salary?

User Avatar

Anonymous

14y ago
Updated: 8/18/2019

i think the answer you are looking for is k=thousand

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What does it mean salary 30 k per month k?

k stands for a thousand.


What is a decent annual salary?

100 k


What is billy Graham's salary?

$145 K


What is the salary for a national sales manager?

50 K


What means salary 30k?

yment in k means


When James K. Polk was president how much salary did he earn?

The salary for the President was $25,000 per year when Polk was in the office.


What is the salary for computer software engineers in India?

144 k rupees


How much salary for team leader in cognizant?

~90 - 120 k


How much salary on the basis of degree in animation?

15 k per month


What is the average salary of Pharmacist in Malaysia?

start pay for fresh grad is 3.8 k,... then slowly increase... average would be 6 k


What are the salary of cafe coffee day AM?

Could be in the range of 40-50 K / month


Input a list of employee names and salaries and determine the mean average salary as well as the number of salaries above and below the mean?

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