0% found this document useful (0 votes)
19 views2 pages

TYBCOM Practical Sem VI 9

The document outlines a series of practical projects for a T.Y.B.Com. Mathematics course at Mithibai College, focusing on various applications of Visual Basic programming. Projects include calculating future investment values, determining net salaries with allowances, finding maximum integers, assessing student attendance, calculating income tax based on salary brackets, and computing a specific series sum. Each project includes specific instructions, test data, and expected outputs for verification.

Uploaded by

rathodpearl13
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views2 pages

TYBCOM Practical Sem VI 9

The document outlines a series of practical projects for a T.Y.B.Com. Mathematics course at Mithibai College, focusing on various applications of Visual Basic programming. Projects include calculating future investment values, determining net salaries with allowances, finding maximum integers, assessing student attendance, calculating income tax based on salary brackets, and computing a specific series sum. Each project includes specific instructions, test data, and expected outputs for verification.

Uploaded by

rathodpearl13
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

MITHIBAI COLLEGE

MATHEMATICS DEPARTMENT

Semester - VI
T.Y.B.Com. Practical No. 9

VB- III

1. Create a project that determines the future value of an investment at a


given interest rate for a given number of years. This method gives the
compound interest. The future value is the sum of principal amount and the
accumulated interest.
Future Value = Investment amount *(1 + Interest rate) ^ years
Use labeled text boxes for the amount of investment, the interest rate (as a
decimal fraction) and the number of years the investment will be held.
Display the future value. Include command buttons for Calculate, Clear.

Test data:

Amount Rate Year Future Value

2000 15% 5 4,022.71

1234.56 7.5% 3 1533.69

Step 2 : Type the following code in the code window


Step 3 : Run the program and verify that the output tallies with that given in
the table above.
Note , while entering the interest rate, type the rate in decimal fraction .
E.g. if the interest rate is 15%, type 0.15.
2. Input name and basic salary BS. Display Net salary (NS) House Rent
Allowance (HRA) is 10% of BS or Rs. 200 whichever is less. provident Fund
(PF) is 8.33% of BS or Rs. 85 whichever is less. NS=BS+HRA-PF
3. Input three unequal integers and then display the maximum.
4. Read student name, Student no and three subject attendance (out of 40
lectures) Find the total and percentage of attendance and display them. If
percentage attendance < 40% display message “Call parents”. If percentage
of attendance between 40 and 75 display message “not satisfactory” . If
percentage of attendance > 75 display “Satisfactory”.
5. Write a project in VB to input Basic Salary (BS). Display income Tax with
message Box statement. Income Tax is calculated as follows:
BS IT rate

First 100000 Nil

Next 200000 5%

Next 150000 10%

Rest 15%

6. Write a project in VB to compute and display sum of the series


12+22+…….+62.

**********

You might also like