1Create console application showing the use of conditional constructs - if, if-else, if-elseif-else, nested if, select case.
2Create console application showing the use of loops - Do While..Loop, Do Until ... Loop, While... Wend, For ... Next, For Each ... Next.
3Create a simple windows application showing the use of TextBox, Button, Label Controls, Radio Button, Check Box, Combo Box and List Box Controls.
4Create a windows application showing the use of Image, Timer, Panel, Scroll bar, Status Bar Controls.
5Create an MDI application showing the use of multiple forms, toolbar, menu, status bar, RichText Box, Dialog Controls.
6Create console/windows application showing the use of Structured Exception handling - try..end try, catch, finally.
7Create console/windows application showing the use of Unstructured Exception handling - On Error, Resume Next etc.
8Create console/windows application showing the use of Array class - its methods and properties.
9Create console/windows application showing the use of Array List - its methods and properties.
10Create console/windows application showing the use of Enumeration, Constants and Structures.
11Create console/windows application showing the declaration and use of user defined functions.
12Create console/windows application showing the use of different argument passing mechanism - ByVal, ByRef, Optional and Paramarray.
13Create console/windows application showing the declaration and use of Class with Data members, Function Member, Constructor Member, Destructor Member, Event Member, Property Member, Shared Member, Type Member.
14Create console/windows application showing the implementation of Inheritance.
15Create console/windows application showing the use of Polymorphism.
16Write a Program to find diameter, circumference and area of circle using procedure.
17Write a Program to find maximum between three numbers using select case and if--else.
18Create Basic calculator with all the functionalities.
19Create a basic Digital or Analog Clock using Timer, Image, Button, ComboBox and other relevant controls.
20Write a Program to find second largest element and second smallest element in an array.
21Write a program to create an arraylist of 10 elements. Create a procedure to add new element at the specific location in the arraylist and display the updated arraylist.
22Write a program to validate the username and password entered by user and create user-defined exception to prompt message on three consecutive wrong password entries.
23Create a Class Box with following private data members length, breadth, height and function getVolume, and public member functions input and output. Create an object of class and call appropriate functions.
24Create a class Rectangle, with protected members width and height, public procedure setWidth and setHeight, getArea. Inherit it in another Class ShrinkRectangle with a data member shrink factor. Create object of the class and call appropriate member functions.
25Create appropriate class to demonstrate overloading of function 'area' for finding area of a circle, square, rectangle and a triangle.
26Create a class Book with data members: BookId, BookName, Cost, Pages. Member property to add data to all its data members, function to find cost per page. Create five objects of 5 books and find total cost.