C++..

C# Program that read array display the smallest integer and sort the array in ascending order by using Array.Sort method.

C# Program that read array display the smallest integer and sort the array in ascending order by using Array.Sort method.

C# Program that read array display the smallest integer and sorts the array in ascending order by using Array.Sort method. Object: Write a program in C# to read a one-dimensional integer array from the user, display the smallest integer in the array, and sort the array in ascending order by using Array. Sort method. Code: […]

C# Program that read array display the smallest integer and sort the array in ascending order by using Array.Sort method. Read More »

Write a C# program to demonstrate the multiple inheritance

Write a C# program to demonstrate the multiple inheritances

Write a C# program to demonstrate the multiple inheritances Object: Write a C# program to demonstrates the multiple inheritances \ Multilevel inheritance in c# with example C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _22sep {     interface IName     {         void displayname(string a);    

Write a C# program to demonstrate the multiple inheritances Read More »

C# Program Create an inheritance hierarchy that a bank might use to represent the customer's bank accounts.

C# Program Create an inheritance hierarchy that a bank might use to represent the customer’s bank accounts.

C# Program Create an inheritance hierarchy that a bank might use to represent the customer’s bank accounts. Object: C# Program Create an inheritance hierarchy that a bank might use to represent customer’s bank accounts. All customers at this bank can deposit money into their accounts and withdraw money from their accounts. More specific kinds of

C# Program Create an inheritance hierarchy that a bank might use to represent the customer’s bank accounts. Read More »

Develop a C# app that will determine the gross pay for each of three employees

Develop a C# app that will determine the gross pay for each of three employees

Develop a C# app that will determine the gross pay for each of three employees Object: Develop a C# app that will determine the gross pay for each of three employees. The company pays straight time for the first 20 hours worked by each employee and time-and-a-half for all hours worked in excess of 20

Develop a C# app that will determine the gross pay for each of three employees Read More »

Write a C# program that reads two arrays and checks whether they are equal.

Write a C# program that reads two arrays and checks whether they are equal.

Write a C# program that reads two arrays and checks whether they are equal. Object: Write a C# program that reads two arrays from the console and checks whether they are equal. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab_5a {     class chkequal    

Write a C# program that reads two arrays and checks whether they are equal. Read More »

Write a C# program to create a static function factorial and calculate factorial of the number.

Write a C# program to create a static function factorial and calculate factorial of the number.

Write a C# program to create a static function factorial and calculate the factorial of the number. Object: Write a program to explain the method in C#. Create a static function factorial() that accepts a number from the user and returns the factorial of the number. C# Projects with Source Code Code: using System; using

Write a C# program to create a static function factorial and calculate factorial of the number. Read More »

Create a class student with a data members name and calculate marks and percentage.

C# Program Create a class student with a data members name and calculate marks and percentage.

C# Program Create a class student with a data member’s name and calculate marks and percentage. Object: C# Program Create a class student with a data member name, age, marks of English, marks of math, marks of science, total marks, obtained marks and percentage provide member functions CalculateTotalMarks and CalculatePercentage to calculate marks and percentage

C# Program Create a class student with a data members name and calculate marks and percentage. Read More »

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number. Object: C# Program Make a class EvenODD, which checks whether the number you inputted is an Even or Odd number. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab_3 { class

C# program which checks whether the number you inputted is an Even or Odd number Read More »

C# Program that Subtracts two user defined numbers

C# Program that Subtracts two user defined numbers

C# Program that Subtracts two user-defined numbers Object: Make a class for subtraction, define a method sub, which subtracts two user-defined numbers. Call it in the main program. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab1b { class subtraction { public void sub(int a, int

C# Program that Subtracts two user defined numbers Read More »

Write a program that will calculate the selling price of a circuit board that costs $12.67

Write a program that will calculate the selling price of a circuit board that costs $12.67

Write a program that will calculate the selling price of a circuit board that costs $12.67 Object: An electronics company sells circuit boards at 40% profit. Write a program that will calculate the selling price of a circuit board that costs $12.67. Display the result on the screen. C++ Projects. Code: #include<iostream> #include<conio.h> using namespace

Write a program that will calculate the selling price of a circuit board that costs $12.67 Read More »