0% found this document useful (0 votes)
3 views

vb.net index

Vb.net

Uploaded by

nilkamal2266
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

vb.net index

Vb.net

Uploaded by

nilkamal2266
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

1

INDEX
S.NO ASSIGNMENT PR OGRAMS PAG REMARK
E
NO.
1. Write a program to find maximum between three
1)
numbers.

Write a program to check whether number is positive,


2)
negative or zero.

Write a program to check whether a year is leap year or


3) not.

Write a program to check whether a character is


4)
alphabet or not.

5) Write a program to find all roots of a


quadratic equation.
Design an application to input marks of five subject’s
6) physics, chemistry, biology, mathematics and
computer. Calculate percentage and grade according
to following:
Percentage>=90%: grade A
Percentage>=80%: grade B
Percentage>=70%: grade C
Percentage>=60%: grade C
Percentage>=40%: grade E
2

Percentage<40%: grade F

Design an application to input basic salary of an


7)
employee and calculate its gross salary according to
following
Basic Salary <=10000: HRA = 20% DA=80%
Basic Salary <=20000: HRA = 25% DA=90%
Basic Salary <=20000: HRA = 30% DA=95%

8)
Write a program to convert decimal to binary number
9)
system using bitwise operator.

10) Write a program to swap two numbers using bitwise


operator.
Write a program to create Simple Calculator
11) using select case.
Write a program to find sum of all natural
12 numbers between 1 to n.
Write a program to find first and last digit of any
13
number.

Write a program to enter any number and


14 print its reverse.
WAP to enter any number and check whether the no. is
15
palindrome or not.

Write a program to check whether a number is


16 Armstrong number or not.
Write a program to print Fibonacci series upto n term
17

Write a program to print Pascal Triangle upto n rows.


18
3

Write a program to print all negative elements in an array.


19

Design the digital watch using timer control.


20

Design an application that accepts the item name from the


21
user and add it to a listbox and combobox.

Create an application that offers various food items to


22
select from check boxes and a mode of payment using
radio button. It then display the total amount payable.

Create an application to implement the working of


23
context menu on textbox.

WAP to illustrate all functionalities of listbox and combobox.


24
WAP using checkbox for the following font effects.
25 Bold
Italic
Underline
Increase font size
Decrease font size
4

Font color

Write a Program to launch using PictureBox and Timer


26
control.

WAP to change the back color of any control using


27
scrollbox

WAP to search an element for one dimensional array.


28
Design a menu such that it contain submenu such as
29
Addition, Subtraction, Scalar Multiplication,
Multiplication, Transpose of two metrics.

WAP to find greatest among three given number using user


30
define procedures.

WAP to calculate factorial of a number using user


31
define procedure.

WAP to check whether a given number is neon or not.


32
WAP to check whether a given number is Niven or not
33
using procedure

WAP to check whether a given number is duck number


34 or not.
WAP to check whether a given number is Spy number
35
or not
WAP to check whether a given number.
36

Design the following application using radiobutton and


37
checkbox :
5

Develop an application which is similar to notepad using


38
menus.

Define a Class ‘ACCOUNT’. Include following Data


39 members: Name of depositor, Accounr no, type of Account,
balance amount. Member Functions: To Deposit an amount,
to withdraw an amount after cecking balance, to show
balance. Also provide proper validations wherever
necessary. Write a main program to test above class.

Define structure student. Structure


40 student has data members for storing
name, rollno, name of three subjects and
marks. Write member function to store
and print data.
Write a class having name Calculate that uses static
41
overloaded function to calculate area of circle, area of
rectangle and area of triangle.

42 Create a table for employee and write a


program using Dataset to add, delete, edit &
navigate records.
6

WAP to access a database using ADO.net &


43 display a key column in the combo box or list box
when an item is selected in it, its corresponding
records is shown in Datagridcontrol.

Develop an application which is similar to login form


44

45 Develop a project which displays


the student infromation in the
relevant fields from the database
which already exists.

Create a class circle with data member radius; provide


46 member function to calculate area.
7

Derive a class sphere from class circle; provide


member function to calculate volume. Derive
class cylinder from class sphere with additional
data member for height and member function to
calculate volume.
WAP that implements the Concept of Encapsulation.
47
WAP to demonstrate concept of
48 Polymorphism (function Overloading and
constructor Overloading).
Create a class student having data members to store roll
49
number, name of student, name of three subjects, max
marks, min marks, obtained marks. Declare an object
of class student. Provide facilities to input data in data
members and display result of student.

Consider an example of declaring the


50 examination result. Design three classes:-
student, exam and result. The student
class has data members such as that
representing roll number,
name of student. Create the class
exam, which contains data
members representing name of
subject, minimum marks,
maximum marks, obtained marks
for three subjects. Derive class
result from both student and exam
classes. Test the result class in
main function.

You might also like