Questions: 1 362

Answers by our Experts: 1 362

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Write a console application for a club to record their member information. For each member to need to store the member’s name and merit points. All new members starts with 0 merit points. Implement class Member which has private attributes for Name and Points. You need to create at a constructor method and the class also needs to have the following methods: public string getName() //Returns the name of the member public int getPoints() //Returns the points of the member public void setPoints(int P) //Sets the points of the member Open and edit your console application to handle the updated requirements. Update the Member class to include the following methods: public void diplayMember() //Display the name and points for a member int IComparable.CompareTo(object obj) //Used to sort the array in ascending order of name


Write a program to take input of string from user and count the number of uppercase alphabets, lowercase alphabets, digits and special characters. Store these counts in an array of size 4.

Description

1. Take console input of string, in Main () method, from user and store.

2. Pass the string to method 'int[] CategorizeCharactersFromString (string sourceStr) and write the logic in that method to count the different types of characters.

3. Return the count from int[] CategorizeCharactersFromString (string sourceStr) to Main() and display the values.

4. Template Code of the same is provided at:

Project Directory/NamespaceName/dotnet run
Take input of a string from user and convert it into piglatin.

Description

1. Take console input of a string, in Main () method from user.

2. Pass the string to method 'string ConvertStringToPiglatin(string sourceStr)' and write

I

the logic in that method to convert the source string piglatin form. 3. Return the result string from string ConvertStringToPiglatin(string sourceStr)' to

Main() and display the result string.

If vowels existed in the source string, returns valid piglatin string Example: source string: techademy, piglatin form: 'echademytay

i.e. split the source string up to the 1st vowel index and place that part at the end

of source string. And finally append the 'ay to the result string

Else returns "-1" 4 Use Subfunction to check if source string has Vowels: 'bool IsVowelExisted (string

source)'.

Write a console application for a club to record their member information. For each member to need to store the member’s name and merit points. All new members starts with 0 merit points. Implement class Member which has private attributes for Name and Points. You need to create at a constructor


Develop a c# windows application for the class circle and write test program to test the circle class.


Develop a c# windows application for the class circle and write test program to test the circle class.


Design a c# console Application that will output the salary sum of two employees

. Your program must do the following :

 

·   Create an abstract data type, Emp. with two private data members Sal. (Type Double) and name (Type String).

·   Include  a  constructor  in  the  Emp  class  to  initialize  all  private  data members with caller-supplied values (in addition to the default constructor!)

·   Overload the + operator to return the sum of two Emp objects.

·   Your OutPut Should be like:

·   Sum of Employees Salary : Shaban, khurrum = 450000.


Create a program that will generate twenty (20) random numbers from the range 1 to 9. The twenty random numbers shall be stored in a generic list. Print a horizontal histogram, representing the occurrence of each digit. Display also the generated combinations. 2. Refer to the sample output given below.


(Sample Ouput)

Welcome to my GENERIC LIST PROGRAM

The 20 random numbers are: 3 4 1 7 8 5 6 3 4 9 3 5 1 3 4 2 8 9 5 9

Histogram:

1 **

2 *

3 ****

4 ***

5 ***

6 *

7 *

8 **

9 ***


Write a program, which removes all HTML tags and retains only the text inside them. The output should be written into the file Covid-21.txt.


Write a program in C++ to accept
principal, rate and time from user and
find out simple interest if interested is
more than 5000 the user has to pay
2% of tax otherwise no tax.
LATEST TUTORIALS
APPROVED BY CLIENTS