IT 145 Global Rain Summary Report Template

docx

School

Southern New Hampshire University *

*We aren’t endorsed by this school

Course

145

Subject

Computer Science

Date

Feb 20, 2024

Type

docx

Pages

4

Uploaded by DeaconElementTapir30

Report
Developer : Date :
IT 145 Global Rain Summary Report Template Directions Place your pseudocode, flowchart, and explanation in the following sections. Before you submit your report, remove all bracketed text. Pseudocode When you are done implementing the Pet class, refer back to the Pet BAG Specification Document and select either the pet check in or check out method. These methods are detailed in the Functionality section of the specification document. Write pseudocode that lays out a plan for the method you chose, ensuring that you organize each step in a logical manner. Remember, you will not be creating the actual code for the method. You do not have to write pseudocode for both methods. Your pseudocode must not exceed one page. START IS Pet a dog or is Pet a cat IF Pet is a dog CHECK if space available IF yes Proceed to returning pet or new pet ELSE State no space available for check-in ELSE Pet is a cat CHECK if space available IF yes Proceed to returning pet or new pet ELSE State no space available for check-in CHECK if Pet is returning or new Pet IF Pet is returning UPDATE information with saved information ELSE Pet is new Pet INPUT new information 2
INPUT length of stay IF Pet is dog and length of stay is greater than or equal to 2 days PROMPT if dog will receive grooming ASSIGN dog to new space ELSE IF Pet is a dog and length of stay is less than 2 days ASSIGN dog to new space ELSE Pet is a cat ASSIGN cat to new space END Flowchart Based on the pseudocode you wrote, create a flowchart using a tool of your choice for the method you selected. In your flowchart, be sure to include start and end points and appropriate decision branching, and align the flowchart to the check in or check out process. Your flowchart must be confined to one page. 3
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
OOP Principles Explanation Briefly explain how you applied object-oriented programming principles and concepts (such as encapsulation, inheritance, and so on) in your software development work thus far. Your explanation should be one paragraph, or four to six sentences. Inheritance is being used between the Pet and Dog classes with dogSpaceNumber so far. Encapsulation is being used in the Dog class with the declarations being set to private. By using the set and get commands in eclipse we are utilizing encapsulation. Polymorphism has not been utilized so far in our coding. 4