This document contains 9 problems related to Excel functions and VB programming. Problem 1 asks to calculate special average, result 1, and result 2 using data from multiple subjects for students. Problem 2 involves calculating pay components like HRA, DA, MA, PF, and net salary using grade and basic salary data. Problem 3 uses VLOOKUP to find grade and bonus from a policy table. Problem 4 uses GOAL SEEK to determine a loan amount given monthly payment and period constraints. Problem 5 involves calculating product unit sales needed to meet a target total sale. Problems 6-9 involve creating VB programs - one to convert currency, one to check divisibility, and one to calculate a series sum.
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 ratings0% found this document useful (0 votes)
68 views3 pages
Tybcom Semvi Journal Problems
This document contains 9 problems related to Excel functions and VB programming. Problem 1 asks to calculate special average, result 1, and result 2 using data from multiple subjects for students. Problem 2 involves calculating pay components like HRA, DA, MA, PF, and net salary using grade and basic salary data. Problem 3 uses VLOOKUP to find grade and bonus from a policy table. Problem 4 uses GOAL SEEK to determine a loan amount given monthly payment and period constraints. Problem 5 involves calculating product unit sales needed to meet a target total sale. Problems 6-9 involve creating VB programs - one to convert currency, one to check divisibility, and one to calculate a series sum.
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/ 3
TYBCOM SEMVI JOURNAL PROBLEMS
1. Name of the students and the marks scored by them in 3 different
subjects are entered in the worksheet from A1 to cell D26 out of which the first row contains the column headings and the other rows contains the data. Find special average , result-1 & result-2 in the column E, F,G resp. Give your own column headings for these three columns. • Special average : Sum of best 2 marks divided by2 • Result 1: A student is declared as ‘Pass’ if he gets 35 or more marks in each subject otherwise ‘Fail’ • Result 2: A student is declared as ‘pass’ if he gets 40 or more marks in each subject and special average is 50 or more otherwise ‘Fail’. 2. Name grade and Basic salary is typed in cell A2 to cell C10, out of which first row contains headings. Calculate the following. • HRA is 10% if grade is ‘A’ otherwise 12% • DA is 10% of basic salary subject to minimum of Rs.2000 • MA for grade ‘A’ is 15%,for grade ‘B’ it is 13% otherwise 10%. • PF is 8.33% of basic or 125 whichever is minimum • NET is Basic+HRA+DA+MA-PF ; it should be roundoff to nearest 10. Also find total net salary payable to grade ‘A” employees in cell A12 3. Employee no. , Name and Salary are entered in columns A,B and C respectively as shown in the following worksheet. Write steps to compute Grade and Bonus in Column D and E respectively using VLOOKUP function. Policy table to be referred for finding Grade and Bonus is given in the range F2:H5. 4. Suppose you want to buy a house and you will be taking loan @ 13% p.a. and loan period you want it to be 20 years ; at the same time you want maximum monthly payment of Rs.11000. You want to know how much loan you will get from the bank. ( USE GOAL SEEK) 5. A company makes 4 products printer,lcd,keyboard,disc whose sale price is 5000,3000,1000,3500 resp. • For the break even it has to achieve a total sale of 1000000 in a year. • Max. units 2000,1000,3000,1800 resp. • Find out number of units of each of these product that should be sold in order to meet the desired target sale. 6. Consider the given Excel sheet and answer the following
A B C D F
1 Year Rice Wheat Jawar Bajra
2 2004 65 88 38 12
3 2005 58 82 56 15
4 2006 71 92 55 19
5 2007 82 101 45 20
• Find annual production in column G
• Draw column chart of production of rice and wheat for 4 years. • Draw Pie chart for the production for year 2002 • Draw 3D Pie chart for Bajara. • Draw line graph for above data. • Draw bar chart of production of rice and bajara for 4 years • 7. Write a project in VB to design a suitable form which allows the user to enter amount in Rupees and rate of conversion to Dollars and then calculate and display equivalent amount in Dollars. 8. Write a project in VB to input an integer and display whether it divisible by 5 or not. 9. Write a project in VB to display the sum of series 1+3+5+………+101.