IT 145 Global Rain Summary Report SSGB
.docx
keyboard_arrow_up
School
Southern New Hampshire University *
*We aren’t endorsed by this school
Course
145
Subject
Computer Science
Date
Dec 6, 2023
Type
docx
Pages
4
Uploaded by Dhowardfamily74
Developer
: Shamika Grant-Bibbs
Date
: November 19, 2023
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
Prompt user for pet information (type, name, age, etc.)
Read and store pet information
Check if the pet is a dog or a cat
If dog
Check if there is space for a new dog
If space is available
Collect length of stay information
Determine if grooming is requested (for stays of two or more days)
Assign a space for the dog
Else
Display "No space available for the dog"
Else if cat
Check if there is space for a new cat
If space is available
Collect length of stay information
Assign a space for the cat
Else
Display "No space available for the cat"
End check-in process
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.
2
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
Related Questions
Instructor note:
Important Coding Guidelines:
Use comments, and whitespaces around operators and assignments.
Use line breaks and indent your code.
Use naming conventions for variables, functions, methods, and more. This makes it easier to understand the code.
Write simple code and do not over complicate the logic. Code exhibits simplicity when it’s well organized, logically minimal, and easily readable.
A pedometer treats walking 1 step as walking 2.5 feet. Define a method named feetToSteps that takes a double as a parameter, representing the number of feet walked, and returns an integer that represents the number of steps walked. Then, write a main program that reads the number of feet walked as an input, calls method feetToSteps() with the input as an argument, and outputs the number of steps.
Use floating-point arithmetic to perform the conversion.
Ex: If the input is:
150.5
the output is:
60
The program must define and call a method:public static int feetToSteps(double…
arrow_forward
Code to shows the template for the build process.
arrow_forward
Lab conditions:
This lab exercise to be completed by the end of the class. No late submission will be accepted
Work as group of two students.
Submit Word document file on D2L
Make sure your following naming format as listed below:
Last name, First Name:
Last name, First Name:
Questions:
1. Research, discuss Explain the purpose of different personal computer (PC) hardware components.
Make sure to address all the aspect of the topic.
Partial list of opcodes:
2. Desktop Computer DIY. Suppose you decide to build a desktop by yourself and your budget is
around $1000 (without OS). Discuss with your team members and list all the parts and tools you have
to purchase with price. List the technical Details and explain what your desktop will be used for, such
as listen to music, word document, 3D design, software development, watch movie and so on.
3. Download and run CPU-Z. Paste your screenshots (technical details) below.
4. Challenge Question
Consider the hypothetical machine:
Instruction…
arrow_forward
Design an application that tracks airline flights. The Flight Schedule is the most important part of the application, which is a collection of flights. Each flight has several attributes, including the Airline and the Aircraft information. The Airline is identified by a name, such as Delta Air, and a code for all of its flights, such as DL. For simplicity, you can assume that every airline has a fleet of one particular type of aircraft. This allows the user to enter only the airline code to fill the rest of the aircraft data when the flight data is entered into the system.
Flight Schedule Design:
Define the structure for the Flight Schedule.
Identify data fields for Airline Name, Airline Code, Aircraft Name/Model, Seat Capacity, and Class-specific seat numbers.
Identify data fields for each flight, including Airline Code, Flight number, Flight status, and Flight Type.
Define Departure data fields: Day-of-the-week, Departure Time, Airport Code, Departure Gate.
Define Arrival data…
arrow_forward
Please convert the code into OOP(class) approach then give a detailed explanation of the code
arrow_forward
arrow_back
Starting Out With Visual C# (5th Edition)
5th Edition
Chapter 11, Problem 1PP
arrow_back_ios
PREVIOUS
NEXT
arrow_forward_ios
Question
share_out_linedSHARE SOLUTION
Chapter 11, Problem 1PP
Program Plan Intro
Employee and ProductionWorker Classes
Program plan:
Design the form:
Place a three text boxes control on the form, and change its name and properties to get the employee name, number, and hourly pay rate from the user.
Place a four label boxes control on the form, and change its name and properties.
Place a two radio buttons control on the form, and change its name and properties.
Place a one group box control on the form, and change its name and properties.
Place a command button on the form, and change its name and properties to retrieve the object properties and then display the values into label box.
In code window, write the code:
Program.cs:
Include the required libraries.
Define the namespace “Program11_1”.
Define a class “Program”.
Define a constructor for the…
arrow_forward
Create a class diagram and write the pseudocode that defines the class.
arrow_forward
VBA - EXCEL
Engine – optional – this indicates the solving method that needs to be used to get to a solution. 1 for the Simplex LP method, 2 for the GRG Nonlinear method, or 3 for the Evolutionary method. This corresponds to the Select a Solving Method dropdown list in the Solver Parameters dialog box
EngineDesc – optional -this is an alternate way of selecting the solving method – here you would type the strings “Simplex LP”, “GRG Nonlinear” or “Evolutionary”. This also corresponds to the Select a Solving Method dropdown list in the Solver Parameters dialog box
What happens when the code demonstrates:
Engine:=1, EngineDesc:="GRG Nonlinear" ?
arrow_forward
Task Class Requirements
The task object shall have a required unique task ID String that cannot be longer than 10 characters. The task ID shall not be null and shall not be updatable.
The task object shall have a required name String field that cannot be longer than 20 characters. The name field shall not be null.
The task object shall have a required description String field that cannot be longer than 50 characters. The description field shall not be null.
Task Class with JUnit test case with it!
Please do not copy and paste from others with TaskService. It's not helpful and does not relate to what I am doing. Thank you.
Java language
arrow_forward
The ACTION and METHOD attributes are used by both code and forms to perform a wide range of tasks.
arrow_forward
Background:
Using C# you are creating application that is going to track the swim clubs, their swimmers, swim meets and results.
Submission:
Submit your solution as compressed solution folder in Lab 2 drop box by the deadline in the drop box.
Please refer to “General Assignment Requirements” for additional requirements.
Create the following classes with the attributes as specified:
-----------------------------
Class Club
Holds the following information:
club number – club’s registration number
name –the name of the club
address – address of the club
telephone number – 10-digit phone number
----------------------------------
Class Registrant
Holds the following information:
registration number – identification number for a registrant
name – a registrant’s name
date of birth
address – address of the registrant
telephone number – 10-digit phone number
----------------------------------------
Class Swim meet
Holds the following information:
Start date – start date of the…
arrow_forward
1. Create Main Program that will instantiate the whole
registration.
2. Create a design class that define an Animal
3. the Animal can be described by: Name, Type, Description
4. Create a registration class that can store the List of
Animals
5. the registration should be able to Add, Edit, Delete, and
Retrieve the List of Animals
6. Create a AnimalDisplay class
7. AnimalDisplay class should be able to Display All animals
and can Display the Animals based on their types
8. Lastly the main program should do the calling for all this
classes, the data input will be coming from the main
program, the process should be done by registration and the
display should be done by AnimalDisplay.
arrow_forward
Software Requirement Engineering
Question:
Draw a use case diagram for “Get a Cab” application
‘Get a Cab’ is a Smartphone application. It will search cabs for the passenger, provide them with security by reminding them about their luggage and it will also allow the user to inform the police with the help of a one-click button. This application facilitates the guardians to trace the location of their loved ones. It also lets passengers locate a driver at any instance to overcome all time related issues. If the passenger wants to avail the services of the same driver in future, he/she can add the driver to the favorite list, stored in the application.
Write a detail use case for “Search a Cab” function.
For searching a cab, the passenger would enter his/her source and destination information and the application would list down all the available cabs in a 1km radius. If application unable to find cab within 1km radius passenger can increase the radius up to 3 km. The passenger would…
arrow_forward
A design class must be fully specified:
Which is correct?
A. all attributes must be complete
B. all operations must be complete
C. all attributes and operations (including return types and parameter lists) D. must be complete
D. None of these
arrow_forward
code in java language :
kindly include comments for better understanding.
arrow_forward
Please written by computer source
When logging into a website, you first enter your username and password, then the program checks to see whether the information you entered matches the information in your account and then the program either gives you an error message or logs you in. Describe the programming elements to be used in the correct order.
arrow_forward
Apply for higher studies: The system allows the students to search for study programs and apply
for higher studies in foreign universities (applying requires attaching transcripts). Administrator
can use this application to download reports add more seats into the course. etc etc
Create your own case study (problem statement) for the above application by expanding it with more
details from your side and for this case study
1. Class diagram with at least 4 classes and explain all the relationships
3. Draw the use case diagram
arrow_forward
ASSIGNMENT
Understand the pay structure of an IT company.
An employee gets basic salary and allowances
Travelling allowance (8%),
Dearness allowance (20%),
Medical (10%),
Family (5%),
Relocation allowance (6%).
Calculate the gross salary he is getting including above mentioned allowances.
Also, he is paying 13% GST (tax) for each pay period.
Can you calculate NET salary which he receives after these deductions?
DESIGN: ALGORITHM AND FLOW CHART
arrow_forward
Define the term Value Parameters.
arrow_forward
my_games = ['Zelda', 'Pokemon', 'Splatoon']
my_games[1] = 'Minecraft'
Draw (or describe) the objects and labels that the Python interpreter creates in response to the first assignment. Then draw (or describe) the objects and labels that results from carrying out the second assignment immediately after the first assignment. Include your drawings or text descriptions in the solution document.
arrow_forward
Design a class named BaseBallGame that has the fields for two names and a final score for each team. Include methods to set and get the values for each data field. Create the class diagram and write the pseudocode that defines the class.
arrow_forward
Task Class Requirements
The task object shall have a required unique task ID String that cannot be longer than 10 characters. The task ID shall not be null and shall not be updatable.
The task object shall have a required name String field that cannot be longer than 20 characters. The name field shall not be null.
The task object shall have a required description String field that cannot be longer than 50 characters. The description field shall not be null.
Verify with Juint testing as well
arrow_forward
Employee ( Eid, Ename,EAge, ECity, E_Street, E_House#, E_Basic_Salary, E_Bonus,E_Rank, E_Department)
Eid is Primary
E_Rank can be “Manager, Developer, Admin”
E_Department can be “HR, CS, IT, Labour”
Employee Age between 18 and
Default value for department is “CS”.
Project( p_id, pName, p_bonus,duration_in_months, Eid)
Pid and Eid combine makes Primary
NOTE: Eid in project is foreign key from Employee. Write SQL Queries for the following statements.
Display whole address of employee along with name, columns names must be “Emp Name” and “Address”.
Display 30% top records of
Display names of all those employees whose address is “house number 44, street no 25, Rwp”.
Display data of employees who lives in “isb or rwp or khi or lhr”. (do not use or keyword)
Display those employees whose age is more than 18 and less than 33. (do not use relational operators “ > or <”.
Display all those employees whose name starts with “S” and…
arrow_forward
CREATE EACH WHOLE CODE FILEThe objective of this project is to develop an interactive ASCII-based game using C programming, specifically following the C89 standard. The game involves a player navigating through a 2D grid filled with various characters representing walls, treasure, lanterns, and a snake.
Game Elements:
•Player (P): The main character controlled by the user.
•Walls (O): Obstacles that the player cannot pass through.
•Treasure ($): The goal of the game, which the player must reach.
•Lantern (@): An item that enhances visibility.
•Snake (~): An enemy that chases the player.
Game Initialization:
The game begins by reading a configuration file specified as a command-line argument. This file contains:
•The dimensions of the playable area (rows and columns).
•The number of walls in the game.
•The grid layout represented by integers that correspond to the characters in the game.
Grid Representation:
Each integer in the grid file corresponds to:
•0: Empty space…
arrow_forward
Pick an object around you and create a class out of it
- plan your class (Name, Parameters, Functionality)
- your object has to have at least 4 parameters ( 2 string, 2 numbers)
- your data has to be private
- implement (override) the function __str__ to show the relative information for your function
- create at least one extra function in your class for the object
- create 4 different objects from your design class
This question is based on python.
arrow_forward
Description:
The program starts by asking the user to select either login (L) or sign up (S) feature. Once the user selects a feature, it asks him for (Card Number, then PIN) and after filling the required information for that feature, it shows the above menu for other features. Otherwise, it keeps asking for the required information. Each feature has to be designed using a separate function and it might be called by other functions including the main function. The description of the login feature, sign up feature, and the above features are given below:
Sign up Feature – def create(): this feature allows new user to create an account and it saves his information in txt. The required information to be asked in this feature as follows:
Card Number: user will enter a card number and should be four digits, each digit is unique and it should not be repeated in the 4-digits card number. This feature will keep running until the user enters the required number with same length and…
arrow_forward
Design a class named TermPaper that holds an author's name, the subject of the paper, and an assigned letter grade. Include methods to set the values for each data field and display the values for each data field. Create the class diagram and write the pseudocode that defines the class.
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you
Related Questions
- Instructor note: Important Coding Guidelines: Use comments, and whitespaces around operators and assignments. Use line breaks and indent your code. Use naming conventions for variables, functions, methods, and more. This makes it easier to understand the code. Write simple code and do not over complicate the logic. Code exhibits simplicity when it’s well organized, logically minimal, and easily readable. A pedometer treats walking 1 step as walking 2.5 feet. Define a method named feetToSteps that takes a double as a parameter, representing the number of feet walked, and returns an integer that represents the number of steps walked. Then, write a main program that reads the number of feet walked as an input, calls method feetToSteps() with the input as an argument, and outputs the number of steps. Use floating-point arithmetic to perform the conversion. Ex: If the input is: 150.5 the output is: 60 The program must define and call a method:public static int feetToSteps(double…arrow_forwardCode to shows the template for the build process.arrow_forwardLab conditions: This lab exercise to be completed by the end of the class. No late submission will be accepted Work as group of two students. Submit Word document file on D2L Make sure your following naming format as listed below: Last name, First Name: Last name, First Name: Questions: 1. Research, discuss Explain the purpose of different personal computer (PC) hardware components. Make sure to address all the aspect of the topic. Partial list of opcodes: 2. Desktop Computer DIY. Suppose you decide to build a desktop by yourself and your budget is around $1000 (without OS). Discuss with your team members and list all the parts and tools you have to purchase with price. List the technical Details and explain what your desktop will be used for, such as listen to music, word document, 3D design, software development, watch movie and so on. 3. Download and run CPU-Z. Paste your screenshots (technical details) below. 4. Challenge Question Consider the hypothetical machine: Instruction…arrow_forward
- Design an application that tracks airline flights. The Flight Schedule is the most important part of the application, which is a collection of flights. Each flight has several attributes, including the Airline and the Aircraft information. The Airline is identified by a name, such as Delta Air, and a code for all of its flights, such as DL. For simplicity, you can assume that every airline has a fleet of one particular type of aircraft. This allows the user to enter only the airline code to fill the rest of the aircraft data when the flight data is entered into the system. Flight Schedule Design: Define the structure for the Flight Schedule. Identify data fields for Airline Name, Airline Code, Aircraft Name/Model, Seat Capacity, and Class-specific seat numbers. Identify data fields for each flight, including Airline Code, Flight number, Flight status, and Flight Type. Define Departure data fields: Day-of-the-week, Departure Time, Airport Code, Departure Gate. Define Arrival data…arrow_forwardPlease convert the code into OOP(class) approach then give a detailed explanation of the codearrow_forwardarrow_back Starting Out With Visual C# (5th Edition) 5th Edition Chapter 11, Problem 1PP arrow_back_ios PREVIOUS NEXT arrow_forward_ios Question share_out_linedSHARE SOLUTION Chapter 11, Problem 1PP Program Plan Intro Employee and ProductionWorker Classes Program plan: Design the form: Place a three text boxes control on the form, and change its name and properties to get the employee name, number, and hourly pay rate from the user. Place a four label boxes control on the form, and change its name and properties. Place a two radio buttons control on the form, and change its name and properties. Place a one group box control on the form, and change its name and properties. Place a command button on the form, and change its name and properties to retrieve the object properties and then display the values into label box. In code window, write the code: Program.cs: Include the required libraries. Define the namespace “Program11_1”. Define a class “Program”. Define a constructor for the…arrow_forward
- Create a class diagram and write the pseudocode that defines the class.arrow_forwardVBA - EXCEL Engine – optional – this indicates the solving method that needs to be used to get to a solution. 1 for the Simplex LP method, 2 for the GRG Nonlinear method, or 3 for the Evolutionary method. This corresponds to the Select a Solving Method dropdown list in the Solver Parameters dialog box EngineDesc – optional -this is an alternate way of selecting the solving method – here you would type the strings “Simplex LP”, “GRG Nonlinear” or “Evolutionary”. This also corresponds to the Select a Solving Method dropdown list in the Solver Parameters dialog box What happens when the code demonstrates: Engine:=1, EngineDesc:="GRG Nonlinear" ?arrow_forwardTask Class Requirements The task object shall have a required unique task ID String that cannot be longer than 10 characters. The task ID shall not be null and shall not be updatable. The task object shall have a required name String field that cannot be longer than 20 characters. The name field shall not be null. The task object shall have a required description String field that cannot be longer than 50 characters. The description field shall not be null. Task Class with JUnit test case with it! Please do not copy and paste from others with TaskService. It's not helpful and does not relate to what I am doing. Thank you. Java languagearrow_forward
- The ACTION and METHOD attributes are used by both code and forms to perform a wide range of tasks.arrow_forwardBackground: Using C# you are creating application that is going to track the swim clubs, their swimmers, swim meets and results. Submission: Submit your solution as compressed solution folder in Lab 2 drop box by the deadline in the drop box. Please refer to “General Assignment Requirements” for additional requirements. Create the following classes with the attributes as specified: ----------------------------- Class Club Holds the following information: club number – club’s registration number name –the name of the club address – address of the club telephone number – 10-digit phone number ---------------------------------- Class Registrant Holds the following information: registration number – identification number for a registrant name – a registrant’s name date of birth address – address of the registrant telephone number – 10-digit phone number ---------------------------------------- Class Swim meet Holds the following information: Start date – start date of the…arrow_forward1. Create Main Program that will instantiate the whole registration. 2. Create a design class that define an Animal 3. the Animal can be described by: Name, Type, Description 4. Create a registration class that can store the List of Animals 5. the registration should be able to Add, Edit, Delete, and Retrieve the List of Animals 6. Create a AnimalDisplay class 7. AnimalDisplay class should be able to Display All animals and can Display the Animals based on their types 8. Lastly the main program should do the calling for all this classes, the data input will be coming from the main program, the process should be done by registration and the display should be done by AnimalDisplay.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you