In: Computer Science
In R-Syntax, create a vector of 100 employees ("Employee 1", "Employee 2", ... "Employee 100")
[Hint: use the `paste()` function and vector recycling to add a number to the word "Employee"] then create a vector of 100 random salaries for the year 2017
[Use the `runif()` function to pick random numbers between 40000 and 50000] and finally create a vector of 100 salary adjustments between -5000 and 10000 [use runif() to pick 100 random #'s in that range]
Employees=paste(c("Employee"),seq(1,100))
salaries=runif(100,4000,5000)
salaryAdjsustment=runif(100,-5000,10000)