Questions: 1 835

Answers by our Experts: 1 539

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 C # console application which contains two classes:
1. The first class “person” contain 4 attributes:
* PersonId which is a private integer.
* Name and Graduation which are public string.
* Age which is a public integer.
And a public method “PersonnalInformation()”. The method should include commands that read the input values for each of the attributes above and then print the input values, as shown in the command prompt below. .

2. The second class “CreatePerson” must contain the main() method; in which you instantiate the first class “person” into a new object “person1”. You reuse the method “PersonnalInformation()” to display all the input data as well as the following.
I want to write a programme that will implement a Bank Account as the base class and subclasses(savings account, mortgage account, annuity account, pension account,checking account). The program will have 3 savers and interest rate of 4%. Saver1 balance = $2000, saver2 balance = $3000 and saver3 balance = $4000.
then change interest rate to 5%.
When the application starts it should display a message asking the user to enter either option d or v.
the application should execute the following actions for the two options.
d : the application should display the file extension of the stoke details.
v: the application should open the stock details file in the read only mode and display its contents.
The calculator should store the result of an expression in a variable called "ans", which can be
used as an input in other mathematical expressions, as shown in the following statements:
>calculate 25*(3+5-(10/2))
ans=75
>calculate ans+10
ans=85
>calculate ans*10/5
However, the candidate can declare any variable to store the result. Being an aspiring candidate,
develop the console-based calculator using C#.
using System;
class Student
{
private string name = "Marcus Trott";
private double marks = 65.0;
public void DispName()
{
System.Console.WriteLine("Name: ", name);
}
public void DispMarks()
{
System.Console.WriteLine("Marks: ", marks);
}
}
class MainClass
{
static void Main()
{
Student s= new Student();
string n = s.DispName();
double m= s.marks;
}
}
Pls can i get a program to add 2 matrices
how profiling agent is creating in C#?
please help me

i want to write a code that look up the longest valid infix expression in the text and return its evaluation

we want to use stack ,string ,queue
....as :

Input example:
“abcd 6 (4+3)*9yuy 6*((4+2)-(8-2))”

Output:

6 * ( ( 4 + 2 ) – ( 8 – 2 ) )
.............................................
thanx
implement a console application to the solution of the following problem. calculate the value of a function given by the Taylor series, the interval from x0 to xn with step h with a given accuracy e. Results display in a table. 1/(1+x)^3=1-(((2*3)/2*)x)+((3*4)/2*)x^2)-(((4*5)/2*)x^3)+...
A painting company has determined that for every 115 square feet of wall space, one gallon of paint and eight hours of labor will be required. The company charges $20.00 per hour for the labor. 4. Display the following details in an organized form: a. The required number of gallons of paint b. The required hours of labor c. The labor charges d. The total cost of the painting job Using structure and functions
LATEST TUTORIALS
APPROVED BY CLIENTS