we are expected to identify any organization (bank, school, supermarket etc.). For the identified organization, we are expected to come up with a system that has the following components
A program is required to calculate wages for employees of network Ltd. using the following formulae i) Basic salary = No of Hours * hourly rate ii) Lunch Allowance = Ksh. 200.00 iii) Gross Salary = Basic Pay + Lunch Allowance iv) Income Tax charged on gross pay as follows: Gross Tax <2000 0% 2001-3000 5% 3001-4000 7% 4001-5000 9% >5000 11% v) Net pay = Gross pay – Tax Hourly rate and lunch allowance are constant values. The number of hours worked should be read from the keyboard. Write a VB.NET program to implement the process.
Write a VB.NET program that accepts registration number, name, gender, unit name and unit code and marks of a student for that unit. Based on the marks of the student, the program should calculate the grade and corresponding comments based on the following grading criteria. If the marks are invalid, i.e. below 0 and more than 100, the program should output an error and prompt the use to enter the marks again. If the marks are correct, the program should display the transcript of the student Use the following grading criteria for your program. Marks Grade Comments Between 70 and 100 A Excellent Between 60 and 69 B Good Between 50 and 59 C Fair Between 40 and 49 D Pass Between 0 and 39 F Fail
Write a Visual Basic 2010 program to print Multiplication table from 1table to 5 table ( till 5 series) in the List Box Control using menu strip control.(Note: Use For Loop and differentiate all tables with different colors)
Main Menu: Multiplication Table
Sub Menus: 1 Table Shortcut key : Alt+1
2 Table Shortcut key : Alt+2
3 Table Shortcut key : Alt+3
4 Table Shortcut key : Alt+4
5 Table Shortcut key : Alt+5
How to program a button to calculate pricing and adding to a list box:
my teacher was very vague on how to do this, we are using else/if statements to do this, my question is how would I go about adding information using radio buttons and pricing them and then adding them to the list box using Else/if statements
DeepPlay FC registered fifteen (15) players for the 2020-2021 football season. After enrollment, players are paid every week from the club’s head office in Kumasi. Players total earnings for the week is calculated based on their regular weekly wage and their performance bonus. The Regular weekly wage is the amount each player receives every week per their individual contracts (based on their transfer value). Alongside the Regular wage, players may receive bonuses for each goal scored (Goal Bonus), number of matches played (Match Bonus) and number of clean sheets kept (Clean Sheet Bonus– for only defenders and goal keepers) as follows:
BONUS
VALUE
Goal Bonus
Match Bonus Clean Sheet Bonus
GHC 2000.00 per Goal
0.05% of player’s Regular Wage 0.07% of player’s Regular Wage
In an attempt to avoid a lot manual paper work and its associated errors and inconsistences, management has decide to automate the player management process for the team. The first step is to tackle the player earnings processing system.
You are tasked to develop the portion of this app, create a Visual Basic Application that will take as input for each player, his/her First Name, Last Name, Position, regular weekly wage, Number of goals scored for the week, number of matches played, and number of clean sheets, to display a list of players with their corresponding Goal Bonuses, Match Bonuses, clean sheet bonuses, and the total weekly earnings for each player.
Also, the app must display the full names of the player with the highest and the lowest weekly earnings alongside their earnings; the average weekly player earning; the total weekly wage bill for the team as well as any other information you may deem necessary(at least 2 outputs here).
The Pythagorean theorem states that the sun of the squares of the sides of a right triangle is equal to the square of the hypotenuse. Given two positive integers, m and n, where m>n, a Pythagorean triple can be generated by the following formulas:
Side 1= m2 - n2
Side 2 = 2mn
Hypotenuse = m2 + n2
Write a program in visual basics that reads in values for m and n and prints the values of the Pythagorean triple generated by these formulas
Write a Visual Basic 2010 program to print Multiplication table from 6
table to 10 table ( till 5 series)in the List Box Control using menu strip
control.(Note: Use Do While Loop and differentiate all tables with
different colors)
Describe how and why computer operating system is important for your computer and how categorised in different categorie?
Private Sub Command1_Click()
X= 1094
If X Mod 100=0 Then
If X Mod 400=0 Then
Print ("leap")
Else
Print ("not leap")
End If
Else
If X Mod 4=0 Then
Print ("leap Yes")
Else
Print (" leap no")
End If
End If
End Sub