IT 145 Joshua Crowley Global Rain Summary Report Template
.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
5
Uploaded by ColonelOryx2298
Developer
: Joshua Crowley
Date
: 05/27/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
GET user input of pet information.
IF the pet is a dog:
CHECK the total dog count.
IF the dog count is less than 30:
INCREMENT the total dog count by 1.
ELSE:
PRINT full capacity for dogs.
ELIF the user input is a cat:
CHECK total cat count.
IF the total cat count is less than 12:
INCREMENT total cat count by 1.
ELSE:
PRINT full capacity for cats.
GET user input for days to board.
IF the pet is a dog:
IF the requested stay is greater than two days:
IF grooming is requested == True:
ADD grooming information to boarding request.
2
ELSE:
END no additional grooming added to information.
GET pet information if previously boarded.
IF pet does not exist in database:
GET user input for required information.
ADD user input to database.
ELSE:
PROMPT for updated information
ADD updated information to the database.
END interface, send confirmation email.
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
Related Questions
I need a step by step explanation on how to create this project.
Project: Flight Time
Problem Description:
Design two classes: Flight and Itinerary. The Flight class stores the information about a flight with the following members:
A data field named flightNo of the String type with getter function.
A data field named departureTime of the GregorianCalendar type with getter and setter functions.
A data field named arrivalTime of the GregorianCalendar type with getter and setter functions.
A constructor that creates a Flight with the specified number, departureTime, and arrivalTime.
A function named getFlightTime() that returns the flight time in minutes.
The Itinerary class stores the information about the itinerary with the following members:
A data field named flights of the List<Flight> type. The list contains the flights for the itinerary in increasing order of departureTime.
A constructor that creates an Itinerary with the specified fights.
A function named…
arrow_forward
Create a class diagram and write the pseudocode that defines the class.
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
code in java language :
kindly include comments for better understanding.
arrow_forward
Please refer to General Assignment requirements document for the additional requirementsPlease note that numbers in the square brackets before each requirement represent the points that are awarded if the requirement is fully implemented.In this assignment you will create an address book. The user of the application will be able to add a contact with the following information about the contact:1. First name2. Last name3. Address4. Phone numberTo implement this, you need to do the following:The Contact classYou will implement the Contact class in Visual Studio. A short description of the class members is given below. This class must have only the following members:Properties:You must use auto-implemented properties.[1] FirstName – string that represents the first name of the contact[1] LastName - string that represents the last name of the contact[1] Address - string that represents the address of the contact[1] Phone – unsigned long integer that represent a phone number of the…
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
use this code template to help you continue:
private boolean included
Indicates whether the item should be taken or not
public Item(String name, double weight, int value)
Initializes the Item’s fields to the values that are passed in; the included Field is initialized to false
public Item(Item other)
Initializes this item’s fields to the be the same as the other item’s
public void setIncluded(boolean included)
Setter for the item’s included field (you don’t need setters for the other fields)
Given code:
public class Item {
private final String name;
private final double weight;
private final int value;
public Item(String name, double weight, int value) {
this.name = name;
this.weight = weight;
this.value = value;
}
static int max(int a, int b)
{
if(a > b)
return a;
return b;
}
// function to print the items which are taken
static void printSelection(int W, Item[] items, int…
arrow_forward
Do not use AI.
arrow_forward
For c++. Need help designing class, no namespsace. FoodWastageRecord
NOTE: You need to design this class.
It represents each food wastage entry recorded by the user through the form on the webpage (frontend).
If you notice the form on the webpage, you’ll see that each FoodWastageRecord will have the following as the data members aka member variables.
Date (as string)
Meal (as string)
Food name (as string)
Quantity in ounces (as double)
Wastage reason (as string)
Disposal mechanism (as string)
Cost (as double)
Each member variable comes with its accessor/mutator functions.
---------------------------------------------------------------------------------
FoodWastageReport
NOTE: You need to design this class.
It represents the report generated on the basis of the records entered by the user. This class will be constructed with all the records entered by the user as a parameter. It will then apply the logic to go over all the records and compute the following:
Names of most commonly…
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
in addition to java programming please include the flowchart of the program for the project and the pseudocode of the program for the project.
Create a program to enter grades and calculate averages and letter grades.
Need a class which will contain:
Student Name
Student Id
Student Grades (an array of 3 grades)
A constructor that clears the student data (use -1 for unset grades)
Get functions for items a, b, and c, average, and letter grade
Set functions for items a, n, and c
Note that the get and set functions for Student grades need an argument for the grade index.
Need another class which will contain:
An Array of Students (1 above)
A count of number of students in use
You need to create a menu interface that allows you to:
Add new students
Enter test grades
Display all the students with their names, ids, test grades, average, and letter grade
Exit the program
Add comments and use proper indentation.
Nice Features:
I would like that system to accept a student with no…
arrow_forward
Dice Rolling Class
In this problem, you will need to create a program that simulates rolling dice. To start this project, you will first need to define the properties and behaviors of a single die that can be reused multiple times in your future code. This will be done by creating a Dice class.
Create a Dice class that contains the following members:
Two private integer variables to store the minimum and maximum roll possible.
Two constructors that initialize the data members that store the min/max possible values of rolls.
a constructor with default min/max values.
a constructor that takes 2 input arguments corresponding to the min and max roll values
Create a roll() function that returns a random number that is uniformly distributed between the minimum and maximum possible roll values.
Create a small test program that asks the user to give a minValue and maxValue for a die, construct a single object of the Dice class with the constructor that initializes the min and max…
arrow_forward
python
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
Creational Pattern
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
The ACTION and METHOD attributes are used by both code and forms to perform a wide range of tasks.
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
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
In order to do a range of tasks, both code and forms employ the ACTION and METHOD attributes.
arrow_forward
Please see the image for instruction
arrow_forward
Task 1: Planning and Passengers
For this task we will be creating an overview of the classes in our system using
the Unified Modeling Language (UML) Class Diagram.
IMPORTANT: When submitting this question, you must submit it as a Portable
Network Graphics (PNG) file.
Below is a list of tools for drawing UML diagrams, but you are free to use any
program of your choosing:
. Google Drawings (https://docs.google.com/drawings/)
. Plant UML (https://plantuml.com/)
• Inkscape (https://inkscape.org/)
• Visual Paradigm (https://online.visual-paradigm.com/)
You may use any tool you wish as long as your diagram follows the UML
conventions and is in the correct format (PNG).
Instructions IMPORTANT: Unless otherwise stated, all attributes should be
private or protected. You may decide for yourself whether an attribute should
be private or protected.
Draw the UML class diagrams for the following classes:
1. An abstract Java class called Person that has the following attributes:
a String called…
arrow_forward
The Spider Game
Introduction:
In this assignment you will be implementing a game that simulates a spider hunting for food using python.
The game is played on a varying size grid board.
The player controls a spider. The spider, being a fast creature, moves in the pattern that emulates a knight from the game of chess.
There is also an ant that slowly moves across the board, taking steps of one square in one of the eight directions.
The spider's goal is to eat the ant by entering the square it currently occupies, at which point another ant begins moving across the board from a random starting location.
Game Definition:
The above Figure illustrates the game.
The yellow box shows the location of the spider.
The green box is the current location of the ant.
The blue boxes are the possible moves the spider could make.
The red arrow shows the direction that the ant is moving - which, in this case, is the horizontal X-direction. When the ant is eaten, a new ant is randomly placed on one of the…
arrow_forward
Java please svalb me
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
C++ Visual Studio 2019
NumDays, TimeOff, and Personnel Report
Complete #4, 5 & 6 . Please submit just one file for the classes and main to test the classes. Just create the classes before main and submit only one cpp file. Do not create separate header files. There is a sample NumDays class in a text file for you to use as a base.
arrow_forward
C# languageCreate a class for “Plane” having functionalities (methods) startengine(), fly() and land(). When ever engine starts it should reset the attribute TTK (Total travel kilometer) to zero and attribute Fuel to 100. On fly() it should add 10 kilometers if the Fuel attribute is greater than zero and decrement Fuel by 20.On land() it should print total distance covered. Write the code providing all necessary details. And then show working object of Plane in main().
arrow_forward
Gradient FillIn this labwork are asked to write a GUI application again using AWT. This is a fairly easy labworkthat is more about getting used to synchronized online learning. You are expected to:• Draw two rectangles.• Both of them should be filled using GradientPaint() function of AWT. (Check out itsfunction definition that is listed below.)• The first gradient should be parallel to the diagonal of the first rectangle. The colorgradient should not be repeated (acyclic).• The second gradient should be horizontal. The color gradient should be repeated forthis one (cyclic).• You are free to choose the colors but other than that your output should be similar tothe example screenshot given below.
arrow_forward
Part 3. arange Method
Define a method in simpy named arange. Its purpose is to fill in the values attribute with range of values, like the range built-in function,
but in terms of floats. It has three parameters in addition to self, the last being optional:
1. start - a float indicating the first value in the range
2. stop - a float that is not included in the produced range values
3. step - a float whose default value is 1.0 that indicates how to increase (or decrease) each subsequent item in the generated range. Unlike the built-
in range function, this can be a fractional, float value. Step cannot be 0.0.
Think carefully about what the value of step tells you about how to design your loop(s) for this method. Before any looping, you should
assert step != 0.0 to be sure you avoid an infinite loop with an invalid argument.
positive = Simpy([])
positive.arange(1.0, 5.0)
print("Actual: ", positive, " - Expected: Simpy([1.0, 2.0, 3.0, 4.0])")
fractional = Simpy([])
positive.arange (0.0,…
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
Purpose
To review interfaces
Directions
Your task for this lab is to implement and test a class to store ratings of items. Your
Rating class should have the following fields and methods:
private double sumOfRatings - the sum of all of the ratings
private int raters - the number of people who have rated an item
public Rating () initialize both fields to zero
public Rating (double sumofRatings, int raters) - initialize the fields
to the parameter values
public void addRating (double newRating) - increase the sumOfRatings by
newRating and increase the number of raters by one
public double getAverageRating () return the average rating; if there
are no raters so far, return 0.0
public String toString() - display the average rating and how many
reviews it is based on; for example, if the sum of the ratings is 32
and that is based on ratings from ten people, the toString method will
return "3.2 based on 10 reviews"
arrow_forward
In this program you will create a structure called class to hold the information of a class in Seneca college’s buildings. The information required for each class is as follows
Campus name (like Newham or Seneca@york)
Building name (like Victor Phillip Dahdaleh Building)
floor (like 1 2 3 4 5, …)
class code (like DB2109)
size of class (40 60 25)
has projector (yes/no, Y/N or 1/0)
has podium (yes/no, Y/N or 1/0)
has whiteboard (yes/no, Y/N or 1/0)
The following is the beginning of the declaration of the structure
Struct class{
Char campus[101];
Char building[101];
---
---
}
Complete the above structure template based on the list of attributes provided
careful with proper usage of . (dot) operator and -> (arrow) operator as this is the part of the code that gets the mark!
void getClass (struct class* cl)
Implement the following printClass
void printClass(struct class cl)
Your function should print the Class in the following format:
Campus: NewhamBuilding:…
arrow_forward
Design a class named StockTransaction that holds a stock symbol (typically one to four characters), stock name, and price per share. 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
SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Related Questions
- I need a step by step explanation on how to create this project. Project: Flight Time Problem Description: Design two classes: Flight and Itinerary. The Flight class stores the information about a flight with the following members: A data field named flightNo of the String type with getter function. A data field named departureTime of the GregorianCalendar type with getter and setter functions. A data field named arrivalTime of the GregorianCalendar type with getter and setter functions. A constructor that creates a Flight with the specified number, departureTime, and arrivalTime. A function named getFlightTime() that returns the flight time in minutes. The Itinerary class stores the information about the itinerary with the following members: A data field named flights of the List<Flight> type. The list contains the flights for the itinerary in increasing order of departureTime. A constructor that creates an Itinerary with the specified fights. A function named…arrow_forwardCreate a class diagram and write the pseudocode that defines the class.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
- code in java language : kindly include comments for better understanding.arrow_forwardPlease refer to General Assignment requirements document for the additional requirementsPlease note that numbers in the square brackets before each requirement represent the points that are awarded if the requirement is fully implemented.In this assignment you will create an address book. The user of the application will be able to add a contact with the following information about the contact:1. First name2. Last name3. Address4. Phone numberTo implement this, you need to do the following:The Contact classYou will implement the Contact class in Visual Studio. A short description of the class members is given below. This class must have only the following members:Properties:You must use auto-implemented properties.[1] FirstName – string that represents the first name of the contact[1] LastName - string that represents the last name of the contact[1] Address - string that represents the address of the contact[1] Phone – unsigned long integer that represent a phone number of the…arrow_forwardDesign 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
- use this code template to help you continue: private boolean included Indicates whether the item should be taken or not public Item(String name, double weight, int value) Initializes the Item’s fields to the values that are passed in; the included Field is initialized to false public Item(Item other) Initializes this item’s fields to the be the same as the other item’s public void setIncluded(boolean included) Setter for the item’s included field (you don’t need setters for the other fields) Given code: public class Item { private final String name; private final double weight; private final int value; public Item(String name, double weight, int value) { this.name = name; this.weight = weight; this.value = value; } static int max(int a, int b) { if(a > b) return a; return b; } // function to print the items which are taken static void printSelection(int W, Item[] items, int…arrow_forwardDo not use AI.arrow_forwardFor c++. Need help designing class, no namespsace. FoodWastageRecord NOTE: You need to design this class. It represents each food wastage entry recorded by the user through the form on the webpage (frontend). If you notice the form on the webpage, you’ll see that each FoodWastageRecord will have the following as the data members aka member variables. Date (as string) Meal (as string) Food name (as string) Quantity in ounces (as double) Wastage reason (as string) Disposal mechanism (as string) Cost (as double) Each member variable comes with its accessor/mutator functions. --------------------------------------------------------------------------------- FoodWastageReport NOTE: You need to design this class. It represents the report generated on the basis of the records entered by the user. This class will be constructed with all the records entered by the user as a parameter. It will then apply the logic to go over all the records and compute the following: Names of most commonly…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 diagramarrow_forwardin addition to java programming please include the flowchart of the program for the project and the pseudocode of the program for the project. Create a program to enter grades and calculate averages and letter grades. Need a class which will contain: Student Name Student Id Student Grades (an array of 3 grades) A constructor that clears the student data (use -1 for unset grades) Get functions for items a, b, and c, average, and letter grade Set functions for items a, n, and c Note that the get and set functions for Student grades need an argument for the grade index. Need another class which will contain: An Array of Students (1 above) A count of number of students in use You need to create a menu interface that allows you to: Add new students Enter test grades Display all the students with their names, ids, test grades, average, and letter grade Exit the program Add comments and use proper indentation. Nice Features: I would like that system to accept a student with no…arrow_forwardDice Rolling Class In this problem, you will need to create a program that simulates rolling dice. To start this project, you will first need to define the properties and behaviors of a single die that can be reused multiple times in your future code. This will be done by creating a Dice class. Create a Dice class that contains the following members: Two private integer variables to store the minimum and maximum roll possible. Two constructors that initialize the data members that store the min/max possible values of rolls. a constructor with default min/max values. a constructor that takes 2 input arguments corresponding to the min and max roll values Create a roll() function that returns a random number that is uniformly distributed between the minimum and maximum possible roll values. Create a small test program that asks the user to give a minValue and maxValue for a die, construct a single object of the Dice class with the constructor that initializes the min and max…arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education