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

C_sharp_assignment

The document outlines a series of programming assignments in C# focusing on various concepts such as multilevel inheritance, static members, temperature conversion, abstract classes, function overloading and overriding, constructors, salary calculations, sealed classes, matrix multiplication, perfect numbers, Armstrong numbers, palindrome checks, HCF and LCM calculations, and generating multiplication tables. Each assignment requires the implementation of specific functionalities and demonstrates different programming principles. The assignments are designed to enhance understanding of C# programming through practical application.

Uploaded by

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

C_sharp_assignment

The document outlines a series of programming assignments in C# focusing on various concepts such as multilevel inheritance, static members, temperature conversion, abstract classes, function overloading and overriding, constructors, salary calculations, sealed classes, matrix multiplication, perfect numbers, Armstrong numbers, palindrome checks, HCF and LCM calculations, and generating multiplication tables. Each assignment requires the implementation of specific functionalities and demonstrates different programming principles. The assignments are designed to enhance understanding of C# programming through practical application.

Uploaded by

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

C#.

Net First Assignment

1. WAP in C#, which implements the concept of multilevel inheritance.


2. WAP in C#, which implements static members.
3. WAP in C#, which accepts temperature in Centigrade and Convert it into Fahrenheit
And Kelvin
4. WAP in C# which show the concept of abstract class.
5. WAP in C#, which implements function overloading and function overriding.
6. WAP in C#, which differentiate all types of constructor available in c sharp.
7. WAP in C#, which accept Basic Salary from user calculate their Net Salary by using this
formula
Net Salary = (Basic Salary + hra + da) - pf
hra = 50% of Basic Salary
da = 60% of Basic Salary
pf = 15% of Basic Salary

8. WAP in C#, which show the concept of sealed class and sealed method.
9. WAP in C# for the matrix multiplication of double dimension arrays.
10. WAP in C#, which finds the given number, is perfect number or not.
11. WAP in C#, which finds the given number, is Armstrong number or not.
12. WAP to check the given no. is palindrome or not.
13. WAP, to find the HCF and LCM of the two numbers.
14. WAP to generate table from 2 to 10 with the help of static method.
15. WAP to show the Employee detail using single inheritance.
16. WAP to enter the marks of five subject by the user and calculate the total, percentage and
division, also show and exception if the denominator is 0

You might also like