1.The user shall be able to enter the following values: a.Gross monthly income (before deductions). b.monthly tax deducted. c.monthly expenditures in each of the following categories: i.Groceries ii.Water and lights iii.Travel costs (including petrol) iv.Cell phone and telephone v. Other expenses 2.The user shall be able to choose between renting accommodation or buying a property. 3.If the user selects to rent, the user shall be able to enter the monthly rental amount. 4.If the user selects to buy a property, the user shall be required to enter the following values for a home loan:a.Purchase price of property. b.Total deposit. c.Interest rate (percentage). d.Number of months to repay (between 240 and 360) 5.The software shall calculate the monthly home loan repayment for buying a property based on the values that the user entered.6.If the monthly home loan repayment is more than a third of the user’s gross monthly income, the software shall alert the user that approval of the home loan is unlikely.
This solution code should contain definition for product model along with it’s properties. The program should also provide impelementations of CRUD operations for the Product model
This exercise contains project for solution code for Product entity and Product Repository classes
This program should define properties for Product model class. The program should also provide impelementations of CRUD operations for the Product model.
To achieve persistence, the data should be stored and read from file
This exercise contains project for solution code for Product entity, Product Repository and DataContext classes
Write a C# program to calculate simple interest.
The program should take the inputs for simple interest and display the result.
The program should ask the user to input Y if he wants to continue, else N to stop
Every time user enters Y, the program should take the inputs and calculate interest
Write a C# program to design menu driven temperature converter console application.
The program should show following options for temperature conversion to user:
The program should then prompt user to enter the temperature value.
The given value should be converted to the required temperature unit, based on the choice inputted by user.
Write a program to define a two dimensional array of numbers to store 5 rows and 6 columns.
Write a code to accept the data, assign it in array, and print the data entered by the user.
1. Create an application named Numbers whose main() method holds two integer variables. Assign
values to the variables. Pass both variables to methods named sum () and difference(). Create the
methods sum() and difference(); they compute the sum of and difference between the values of two
arguments, respectively. Each method should perform the appropriate computation and display the
results. Save the application as Numbers.cs
Write a program that does the following for 15
students:
Reads in 3 marks for each student (you
need to ensure that only valid marks
between 0 and 100 are processed) – your
prompt message to the user should
indicate which number is being requested
(see example image of output)
Calculates and displays the highest mark
for each student.
Finds and displays the highest mark in the class.
(Note: The example output only shows data for 5
students, but your program must work for 15
students).
Write a program which requests a number between
1 and 50 from the user. It must repeatedly ask the
user for a number until a valid number is entered.
After receiving a valid number, the program must
display all the even numbers smaller than that number. (If the user enters 11, the numbers 2, 4, 6,
8, 10 must be displayed).