Answered step by step
Verified Expert Solution
Question
1 Approved Answer
VB Assignment Write a VB.Net program (Use functions and procedures as needed) to do the following: You have employee information represented in the following arrays:
VB Assignment Write a VB.Net program (Use functions and procedures as needed) to do the following: You have employee information represented in the following arrays: Employees() as string = \{"Ziyad","Jamal","Ahmad", "Mohammad","Mohand", "Sami", "Rasha", "Sufian","Jalal","Fadi", "Farah" \} Children() as integer ={1,3,5,3,6,4,2,3,2,4,3} Salaries() as double ={500,450,800,340,670,980,1200,560,840,787,432} The program has the following main menu should work correctly: 1. Add a new employee 2. Display a list of employee names sorted in ascending order 3. Display employee Payroll report 4. Find a specific employee information 5. Display the total and average net salaries for all employees. 6. Display employee information with the highest net salary 7. Exit Notes: - Add a new employee means you have to add at the end of the arrays a new employee name and number of children and his/her basic salary - Net salary = basic salary + Children Allowance - Income Taxes - Children Allowance = number of children * 10 (for each child $10 allowance) - Income Taxes depend on employee basic salary and computed as follows: - If basic salary 0-200 Income Taxes =0 - 201-500 Income Taxes = basic salary * 3% - 501-1000 Income Taxes = basic salary * 5\% More than 1000 Income Taxes = basic salary * 8% - Employee Payroll report should be like
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started