logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Penn RitchieSociology
(5/5)

791 Answers

Hire Me
expert
StatAnalytica ExpertPhilosophy
(5/5)

520 Answers

Hire Me
expert
Earle BirdselllData mining
(5/5)

824 Answers

Hire Me
expert
Thomas BornholdtEconomics
(5/5)

553 Answers

Hire Me
Visual Studio Programming

We will be implementing an application that allows adding and searching for insurance policies We define the necessary properties, constructor and a ToString method that shows “Insurance Details"

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Part I

We will be implementing an application that allows adding and searching for insurance policies.

Question 1: [15 pts]

We start by creating an “Insurance” class that has the following properties:

  • Type : string
  • Customer : string
  • Phone : string
  • PolicyAmount : int
  • Years : int

We define the necessary properties, constructor and a ToString method that shows “Insurance Details: Type,Customer,Phone,Total"  where Total=PolicyAmount*Years.

Question 2 – New Insurance [35 pts]:

 

 When the application starts, it shows a Groupbox containing the below controls:

  • Five Labels
  • A combo box for the policy type which can be: Medical, Life or Car
  • Two textboxes for the customer name and phone. The phone text box allows entering digits only.
  • Two numericupdown controls for the policy amount and number of years.
    • Policy amount ranges between 1000 and 10000, the increment step is 200 [3pts]
    • Number of Years5 ranges between 1 and 5, the increment step is 1 [2pts].
  • Two buttons to add a policy and for searching.

When the form first loads, the combo box for the policy type will be filled with three options: Medical, Life and Car.

The “Search” button is initially disabled, until the user fills the first policy. Then it becomes enabled.

If the user clicks the “Add Policy” button without filling the necessary fields or in case the phone number had more or less than 8 digits, you can use the Length property of strings to test, the below message will be displayed

If all the entries are valid, a new Insurance policy object is created and added to an array list of type “Insurance”.

Write the necessary code to:

  1. Load the combo box with the 3 type values. [5pts]
  2. Allow only digit inputs in the phone text box [5pts]
  3. Validate the entries [5pts]
  4. Add a new policy when the button Add is clicked, clear and reset all fields. [10 pts]
  5. Enable the search button after the first policy and upon clicking the button Search the Groupbox “Search Area” becomes visible as shown in the figure below [5 pts]

Question 3 – Search Area [50 pts]

 

The Search Area groupbox consists of:

  • One label : « Search By ? »
  • Two radio buttons
  • A textbox
  • Three buttons
  • A listbox to show the results

You can implement the code using LINQ queries or the Query Methods and Lambda Expressions. 

If the user clicks on the button “Go” without selecting any radio button or entering a filtering value in the text box, a message is displayed as shown below:

If the user selected “Type”, this means that he will be searching for policies by the type entered in the textbox. If the user selected “Customer”, then he will be looking for the policies belonging to a customer with a name containing the value entered by the user. The results are to be displayed in the listbox.

 

Hints:

  • When comparing between two strings, to avoid a mismatch because of the cases: Medical and medical for example, we can convert both to lower before testing:
    • String x=”Medical”, y=”medical”;
    • ToLower().Equals(y.ToLower()) à returns true.
  • Contains method can be used with Strings to test if a string is a substring of another. “Rami Kady”.ToLower().Contains(“rami”.ToLower()) à yes
  1. Implement the « Go » button as explained [20 pts].
  2. The button with text: Customers who bought a policy for more than 2 years, will show in the list box, the customer names only for those who have a Years property > 2. Write the necessary code [15 pts]
  3. The last button shows in the listbox the most expensive policy, that is the one that has the highest total cost: PolicyAmount * Years. Write the necessary code. [15 pts]

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme