Given a set of program specifications for a simple business


Student Lab Activity

  • Given a set of program specifications for a simple business problem that requires the use of a collection of data to solve a business problem, code and test a program that implements arrays that meet the specifications and employ best programming practices.
  • Given a collection of data of a flexible and varying nature, design, code, and test a program that implements the use of a dynamic array that meets the specifications and employs best programming practices.

This lab will familiarize the student with arrays by storing values for rent in an apartment building in an array and displaying the correct rent, based on which floor of the building the unit is on.

A.    Deliverables:

Step

Deliverable

Points

5

Program Listing, Output, and Project Files

45

The Dropbox deliverables include the following:

1.     Include a zipped file with all the files from your Visual Basic project (see directions in Doc Sharing on how to collect and zip files).

2.     Create a single MS Word document and include the following:

  • For each lab, copy and paste your code directly into the MS Word file.
  • Include screenshot(s) of your test data with test results. Enter enough data to demonstrate that all your code has been tested.
  • Include another screenshot of the VB build output messages. Check your build output to make sure you have a successful build with (0) errors and (0) warnings. NOTE: The build output messages appear at the bottom of your window after you click the Build menu and before you click the Start Without Debugging option. Your build output messages provide a list of compiler warnings or errors and let you know if your program compiled successfully.
  • Include the Word document as part of the zipped project file.

3.     Upload each part of the lab into its corresponding weekly Dropbox.

B.    Lab Steps:

Preparation:

If you are using the Citrix remote lab, follow the login instructions located in the iLab tab in Course Home.

Lab:

Step 1: Create a New Project

 

Create a Visual Basic Console Project in Visual Studio. Name the Project CIS170A_Lab06.

Write the program that will use arrays to store rent by floor and display the rent for the selected floor using the Processing Logic provided in Step 2.

 

Step 2:  Program Description

 

In this project, you will create a program, using an array, which keeps a list of the rent rates for an apartment building. The rent rate for an apartment depends on which floor the apartment is located on and every apartment on the same floor has the same rent rate. The program shall read the name of the apartment building, how many floors the apartment building has, and get the rental rates for each of the floors. Once the rental rates are provided, the program shall list the rates. The program user shall be able to provide a floor number and the program will display the apartment building name, the total number of floors, the requested floor, and how much the rent is for the given floor.

The customer has several apartment buildings to choose from. The smallest apartment building has three floors and the largest apartment building has 20 floors. The program shall validate that the floor number is between the minimum and maximum floor values. Also, the minimum rental rate for any building is $1,000 per month, while the highest rent is $2,500.The program shall validate that the provided rental rates are within the minimum and maximum rates.

Design Requirements:

In Week 7, we will expand on this program and in order to easily modify it, your program will incorporate the following design features:

1.     The design will be modular and the event handlers shall not contain any processing logic, but only invoke reusable modules.

2.     All minimum and maximum values shall be declared as constants.

3.     The user shall not be able to input the floor he or she wants to search for until after the apartment building name, the number of floors in the building, and the rent values for each of the floors in the building have been entered and validated.

4.     Declare rentlist, numFloors, and requestedFloor as form level variables. All other variables should be declared locally as required.

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: Given a set of program specifications for a simple business
Reference No:- TGS01030263

Expected delivery within 24 Hours