List of Practical

1. WAP to perform arithmetic operation using command buttons. (Declare variables globally).

2. WAP to take input of principal, rate & time and calculate simple interest & compound interest.

3. Write a program to take input of x and print table of x in the following format.
X * 1 = X
X * 2 = 2X
-----------------
-----------------
X * 10 = 10 * X

4. Design an interface, which will appear like marksheet. It will take input of marks in five subjects and calculate total marks and percentage then provide grade according to following criteria. (Using nested if) (Use tab index property to move focus).
If % Then Grade
> = 90 A+
> = 75 & < 90 A
> = 60 & < 75 B
> = 45 & < 60 C
Otherwise F

5. WAP to create a simple calculator (Using control array)

6. Write a program to check whether an centered no. is prime or not. (Using for loop & Exit for)

7. Write a program which will count all vowels, consonants, digits, special characters and blank spaces in a sentences (Using select case)

8. WAP to illustrate all functionalities of listbox and combobox.

9. WAP using check boxes for following font effects.
Bold
Italic
Underline
Increase font size
Decrease font size
Font color

10. WAP for temperature conversion using option button.

11. WAP to launch a rocket using pictures box and timer control.

12. WAP to change back color of any control (label, textbox) using scroll box.

13. WAP to search an element for a one dimension static array.

14. WAP to sort a dynamic array of
(a) n numbers
(b) n strings (Input array size at run time)

15. WAP to take input of two matrices and perform their addition, subtraction and multiplication
using menu editor.

17. WAP to illustrate call by value and call by reference ( to swap to values)

18. Write a program to calculate factorial of a number using user defined function.

19. Take input of a word and WAP to check whether it is a palindrome or not. (Without using structure fun)

20. WAP to find smallest among given three numbers using user defined procedures.

21. WAP to generate, print and find sum of first n elements of fibonacci series using recursion.

22. WAP to perform read write operations in a sequential file.

23. Create a user defined data type having fields name (as string of length 20 bytes), Rollno (as integer), class (as string of 10 bytes). WAP to create a random access file to store above data and perform following operations in this file.

(a) Write new record
(b) Read / display existing record
(c) Delete any record
(d) Search any record
(f) List selected records
(e) close the file

24. WAP to display records of a table using DAO & bound control code for buttons to move at first record, next record, previous record, last record in the table.

25. Create a table using visual data manager and write a program using RDO & advanced bound control to add, delete, edit & navigate records.

26. WAP to access a database using ADO & display a key column in the combo box or list box when an item is selected in it, its corresponding records is shown in MSH flex grid.

27. Using Data Environment create a program to display records of any table.

28. WAP to generate marksheet of students in a class through data report.

29. WAP to illustrate various key board and mouse events.

30. Using drive, directory and file list box (it will show only .bmp files). Let the user select the bmb files, which will appear in picture box as user click on any item in list box.

31. Using toolbar design an interface for string manipulation. Toolbar should have tabs to
(a) Find length of string
(b) No of blank spaces in sting
(c) Reverse the string
Also show current date & time in status bar.