CS10_PS4-3
.pdf
keyboard_arrow_up
School
Santa Clara University *
*We aren’t endorsed by this school
Course
1
Subject
Computer Science
Date
Jan 9, 2024
Type
Pages
4
Uploaded by PrivateJellyfish21712
Santa Clara University
Fall 2023
Name:
|
{z
}
Write your name here.
Csci 10–Problem Set 3
Problem 1.
The grading scheme of our CS 10 class is given below. Write code to convert a number grade to a letter
grade accordingly.
Problem 2.
Write a class
PizzaOrder
to take the order’s name, size, and the number of toppings.
(a) Suppose the prices are as follows: Large—$23, Medium—$19, and Small—$15, and Topping—$1 each. Write a
member function to take the size of the order, the number of the pizzas, and the number of toppings and return
the price and the proposed tips corresponding to 22%, 20%, and 18%.
(b) Write a member function
printOrder()
in details.
Problem 3.
Write a program to prompt the user for which language (give your own choices here) they would like
to say “Hello” in. Then, print out, say, “Hola” if they choose
Spanish
. Improve your program with a
while loop
to repeatedly prompt the user until they give the right language option.
Problem 4.
In Statistics, the measures of center include mean, median, and mode. They can be defined as follows
for the data set of values
x
1
, x
2
, . . . , x
n
.
(a) Mean: ¯
x
=
x
1
+
x
2
+
. . .
+
x
n
n
. Write a user-defined function to return the mean of a given data set.
(b) Median is the middle value when your data values are ordered
from smallest to greatest
. Write a user-defined
function to return the median of a given data set. (You might use the
sort()
method here or use your own sort
function from HW 12.)
(c) Mode is the value that appears the most often in your data set. Write a user-defined function to return the mode
of a given data set. (You might use the
count()
method here or use your own count function.)
(d) Create a class
Stat
to manage your data sets by including the above three functions as the member functions of
your
Stat
class. Write another member function
printStat()
to nicely display the mean, median, and mode of
a given data set.
Problem 5.
Assume the days of the week are numbered 0,1,2,3,4,5,6 from Sunday to Saturday. Write a function
which is given the day number, and it returns the day name (a string).
Problem 6.
You go on a wonderful holiday (perhaps to jail, if you don’t like happy exercises) leaving on day
number 3 (a Wednesday). You return home after 137 sleeps. Write a general version of the program which asks for
the starting day number, and the length of your stay, and it will tell you the name of day of the week you will return
on.
Problem 7.
Write a function
days
in
month
which takes the name of a month, and returns the number of days in
the month.
Problem 8.
Write a function
to
secs
that converts hours, minutes and seconds to a total number of seconds.
Problem 9.
Write a function that is the “inverses” of
to
secs
. For example, if we have 9010 seconds, the function
returns 2 hours, 30 minutes, and 10 seconds.
Problem 10.
The slope,
m
, of the line passing through the points (
x
0
, y
0
) and (
x
1
, y
1
) is given as
m
=
y
1
-
y
0
x
1
-
x
0
.
(a) Write a function
slope(
x
0
, y
0
, x
1
, y
1
)
that returns the slope of the line through the points (
x
0
, y
0
) and (
x
1
, y
1
).
(b) Then use a call to
slope
in a new function named
intercept(
x
0
, y
0
, x
1
, y
1
)
that returns the y-intercept of the
line through the points (
x
0
, y
0
) and (
x
1
, y
1
).
Problem 11.
Write a user-defined function
multiplication
table(n)
to return a multiplication table for a given
positive integer
n
. For example,
multiplication
table(6)
should look like
Problem 12.
Write a user-defined function
remove
vowels(msg)
to remove all the vowels from a given string.
Problem 13.
Write a user-defined function
my
find(msg,char)
to find and return the index of the character,
char
,
in the given string, and return
-
1 if
char
does not occur in the string.
Problem 14.
Write a function that mirrors its argument. For example,
mirror(‘‘good’’)
returns
‘‘gooddoog’’
.
Problem 15.
Write a function that removes all occurrences of a given letter from a string. For example,
remove
letter(‘‘a’’, ‘‘banana’’)
returns
‘‘bnn’’
.
Problem 16.
Write a function that recognizes palindromes.
For example,
is
palindrome( ‘‘abba’’)
returns
True
, but
is
palindrome( ‘‘abab’’)
returns
False
.
Problem 17.
Write a function that counts how many times a substring occurs in a string. For example,
count
substring(
‘‘is’’, ‘‘Mississippi’’)
returns 2 and
count
substring( ‘‘aaa’’, ‘‘aaaaaa’’)
returns 4.
Problem 18.
Write a function that removes the first occurrence of a string from another string.
For example,
remove
substring( ‘‘iss’’, ‘‘Mississippi’’)
returns
‘‘Missippi’’
.
Problem 19.
Write a function called
cumsum
that takes a list of numbers and returns the cumulative sum by
appending the sum as the new last element of the original list. For example,
=[1,2,3]
,
cumsum(t)
returns [1
,
2
,
3
,
6]
Problem 20.
Write a function called
middle
that takes a list and returns a new list that containsall but the first
and last elements.
Problem 21.
Write a function called
is
sorted
that takes a list as a parameter and returns
True
if the list is sorted
in ascending order and
False
otherwise. For example:
Problem 22.
(a) Create a class named
Point
to represent a point
P
(
x, y
) in the coordinate attributes. (We have
done that in class.)
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
Problem C
• -3: method consonants() had more than one loop
• -3: method initials () had more than one loop
• -3: at least one method used nested loops
arrow_forward
in python language plz
arrow_forward
Question 1: Blood Donation
For this question you will be writing a program to solve the same problem as Question 2 from Assignment 4. However, as described at the beginning of the assignment specification your solution for this assignment must not use explicit recursion.
Since the purpose, contract, and examples would be identical to the solution for the Assignment 4. However, you are encouraged to properly document and fully test your solution. You are welcome to use code and tests from the model solution in your submission for this question.
Here is the problem specification.
Hospitals rely on donors to provide blood for people who are in accidents or scheduled for surgery. However, people have different blood types, and some blood types are compatible for donation and others are not. There are eight different blood types: O-, O+, B-, B+, A-, A+, AB-, AB+
The rules for blood donations are shown in a table from the Canadian Blood Services website.
Here is a summary of that table:
* A…
arrow_forward
PROGRAMMING LANGUAGE: C++
ALSO PUT SCREENSHOTS WITH EVERY TASK.
TASK 1 : A class of ten students took a quiz .The grades (integers are in range 0-100) for this quiz are available to you .Determine class average on quiz .
TASK 2: Write c++ code that print summery of exam result and decide either student should have makeup class or not .If more then 30% of class fails in exam it’s mean they need a makeup class otherwise they don’t need any makeup class. For class strength take input from user
(Hint: take two variables pass and fail)
TASK 3: write a c++ that will determine whether a department-store customer has exceeded the credit limit on the charge account .For each customer , following facts are available :
Account number (an integer)
Balance at beginning of month
Total of all items charged by this customer this month
Total of all credit applied to this customer’s account this month.
Allowed credit limit
You are required to use a while structure to input each of these facts ,…
arrow_forward
exactly as mentioned:
arrow_forward
Your task is to create two classes namely data and calculation. The calculation
class is a friend of the data class. The data class will be composed of two floating
point data members namely a and b. The class will also be composed of a friend
function display that can display all the data members.
arrow_forward
Object-Oriented Programming - Java programming.
arrow_forward
Object oriented programming
Intellij
arrow_forward
python language
Write a function that overwrite the greater than method for a class. The class has a field variable called score. The lower the score, the better.
INPUT: Nothing? NOTE: this method is inside the class
OUTPUT: Nothing is output
RETURNED: The boolean result of the new comparison
arrow_forward
Python
arrow_forward
Knapsack Problem
This exercise is due Tuesday, May 14. It has to be turned in on time in order to get participation credit. I'll come into class and go over the solution right away. Then I will collect your work on the exercise. Be ready to turn it in at that time.
Fill out the table for the knapsack problem, where the objects, weights, and values are as given, and the overall weight limit is 10.
Next, circle the entries in the table that are used when backtracking to find objects to use in the solution.
Then list the object numbers that can be used for an optimal solution.
Also list the weights and values of those objects.
Verify that the values of your solution objects add up to the optimal number in the last row and column in the table.
Verify that the sum of the weights of your solution the objects is not more than the overall weight limit of 10.
Weight Capacity ----->
obj
# wt val | 0 1 2 3 4 5 6 7 8 9 10…
arrow_forward
Solve in c++
Create a class product having class member’s item_code, item_name, item_price. Declare themember function input in which user feed the quantity in which he wants the product. Declare anothermember function display that calculate and display final bill.
For your help, it is solve here
https://www.bartleby.com/questions-and-answers/create-a-class-product-having-class-members-item_code-item_name-item_price.-declare-the-member-funct/95fba41f-e9ed-413c-9ce1-a480576b5a30
arrow_forward
Python
The base class Pet has attributes name and age. The derived class Dog inherits attributes from the base class Pet class and includes a breed attribute. Complete the program to:
Create a generic pet, and print the pet's information using print_info().
Create a Dog pet, use print_info() to print the dog's information, and add a statement to print the dog's breed attribute.
Ex: If the input is:
Dobby 2 Kreacher 3 German Schnauzer
the output is:
Pet Information: Name: Dobby Age: 2 Pet Information: Name: Kreacher Age: 3 Breed: German Schnauzer
arrow_forward
Use Python Programming Language
(The Stock class) Design a class named Stock to represent a company’s stock that contains:
A private string data field named symbol for the stock’s symbol.
A private string data field named name for the stock’s name.
A private float data field named previousClosingPrice that stores the stock price for the previous day.
A private float data field named currentPrice that stores the stock price for the current time.
A constructor that creates a stock with the specified symbol, name, previous price, and current price.
A get method for returning the stock name.
A get method for returning the stock symbol.
Get and set methods for getting/setting the stock’s previous price.
Get and set methods for getting/setting the stock’s current price.
A method named getChangePercent() that returns the percentage changed from previousClosingPrice to currentPrice.
Write a test program that creates a Stock object with the stock symbol INTC, the name Inte lCorporation, the…
arrow_forward
explain how to create UML class diagram for this task. show all the steps. thanks
arrow_forward
Context
You work with the team in charge of the automatic driving program at Tesla. You are in charge of programming the necessary braking to be applied in the event that the car's on-board computer detects a stationary obstacle that appears directly in front of the car.
Constraints
In order not to rush the passengers of the car too much, the program would like to brake as gently as possible.
To keep a certain safety margin, the program must stop 1 meter before reaching the obstacle.
Modelization
Start by modeling the acceleration required to bring the car to a complete stop (while respecting the constraints) as a function of the speed at which the car was initially traveling and the distance at which the obstacle appeared.
Then test your model by calculating the modulus of the acceleration needed for the following values
The car was traveling at 45 km/h;
The obstacle appeared 23 meters in front of the car;
arrow_forward
Credit Rating (feature1)
Liabiltiy or not (Target)
Yes
No
Total
Excellent
3
1
4
Good
4
2
6
Poor
0
4
4
Total
7
7
14
Balance (feature2)
Liabiltiy or not (Target)
Yes
No
Total
>50K
2
6
8
< 50 K
5
1
6
Total
7
7
14
Liability Tables
Refer to the ‘Liability’ tables above, the target variable is Liability which can take on two values “Yes” and “No” and we 2 features: Credit Rating (which can take on values “Excellent”, “Good” and “Poor”), and Balance (which can take on values “> 50K”, “< 50K”). There are 14 observations in total. See the above liability table for different figures of ‘excellent’, ‘good’, ‘poor’ credit ratings and ‘Yes’, ‘No’ liability class. Use decision tree algorithm to work out which feature provides more information or reduces more uncertainty about our target variable out of the two using the concepts of entropy and information Gain.Please answer ASAP,…
arrow_forward
Object oriented programming C++
Use Classes
Write a C++ program in which each flight is required to have a date of departure, a time of departure, a date of arrival and a time of arrival. Furthermore, each flight has a unique flight ID and the information whether the flight is direct or not.Create a C++ class to model a flight. (Note: Make separate classes for Date and Time and use composition).add two integer data members to the Flight class, one to store the total number of seats in the flight and the other to store the number of seats that have been reserved. Provide all standard functions in each of the Date, Time and Flight classes (Constructors, set/get methods and display methods etc.).Add a member function delayFlight(int) in the Flight class to delay the flight by the number of minutes pass as input to this function. (For simplicity, assume that delaying a flight will not change the Date). Add a member function reserveSeat(int) which reserves the number of seats passed as…
arrow_forward
In OCaml Programming Language:
arrow_forward
Bus Loading Problem. You are in charge of filling busses with passengers at a bus terminal. Each bus has space for ten (10) passengers. Four (4) of those spaces can hold only wheelchair passengers, and the other six (6) can hold only non-wheelchair passengers.
Busses and both types of passengers arrive at random. As busses arrive, you are to fill them up with passengers.
Once a bus is full (containing 6 non-wheelchair, and 4 wheelchair passengers), it is allowed to leave the terminal, along with its passengers.
You are responsible only for loading the passengers on the bus and having the bus depart. You do not need to worry about what happens to the busses or passengers after they leave.
Each bus process has available to it the functions ArriveAtTerminal(), OpenDoors(), CloseDoors(), and DepartTerminal().
Each passenger process has available to it the functions ArriveAtTerminal() and GetOnBus(). Executing GetOnBus() loads the passenger on the bus, and the function returns when the…
arrow_forward
Consider the following code segment and answer questions 14 and 15.
class Point {
public:
Point (double x = -99, double y = -99) { this -> xM = x; this -> yM = y;}
double getx () {return xM; }
double gety () {return yM; }
void setx (double x) {this -> xM = x; }
void sety (double y) {this -> yM = y; }
private:
double xM, yM;
};
14. What is the output of the following code snippet:
Point pl (100);
cout << pl.getx() << "
" << pl.gety();
a. The output of the program is: -99 -99
b. The output of the program is: 100 100
c. The output of the program is: -99 100
d. The output of the program is: 100 -99
e. None of the above. It doesn't compile because constructor of Point needs two arguments.
15. How many times does the constructor of class Point get called by the following code snippet:
Point a (100, 200);
Point b[6];
Point *c = new Point;
Point *d = new Point (300, 400);
a. Four times
b. Three times
c. Nine times
d. Two times
e. None of the above
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
Using Java programming language write a program to manage a hotel with 24 rooms;10 rooms are Executive, with price Gh ₵ 2500.00 per night, 7 rooms are Chalets, with amounts Gh ₵ 1500.00 per night7 rooms are Ordinary, with amount Gh ₵ 500.00 per night
The program should allow customers to book for rooms for a number of nights, and update the number of empty rooms available for each category when a customer has paid fully and has checked-in; also update the number of empty rooms available when customer checks-out. Customers should make bookings with their first names, telephone number
A customer should be prompted to know if a room is booked (meaning a another customer has booked it but has not paid fully, or has not checked-in)
A customer should be prompted to know if a room is occupied (meaning a booked room has been fully paid for, or the customer has checked-in)
A customer should be prompted to know if a room is available (meaning a room has neither been booked nor checked-in).
A…
arrow_forward
Written in Python
It should have an init method that takes two values and uses them to initialize the data members. It should have a get_age method.
Docstrings for modules, functions, classes, and methods
arrow_forward
Problem:Write a program to simulate the work of processes scheduler by using RR algorithm. Theprogram should have three classes which are:1. Process Class: This class represents the process where it has process id, executetime and completion time. Arrival is assumed to be zero all times. Process id shouldbe unique and the class create it for each process. Provide the required methodsaccordingly.2. RRSchedule Class: This class represents the work of the scheduler. It has mainlytwo lists of processes, quantum size, and clock. One of the list will be as a recordof the processes while the other is to work on to execute the process in CPU. Theclock should be a simple counter to represent timing to run the list of processes.The method list should be as following:a. Pop method: to remove the process from the top of the list.b. Push method: to insert the processes at the end of list after it is interruptedand still has to go to CPU again.c. RunRR method: to represent the job of RR scheduler.…
arrow_forward
1 Normal
1 No Spac. Heading 1
Heading 2
Tit
Paragraph
Styles
Practice 2:
DESCRIPTIONS OF PROBLEM:
DapaStore, a cloth department would like to have a cash register program that can calculate sale for the store. The store has 4 departments
currently Spring Sale. Write a program contained a class CashRegister, which has 4 attributes: department (type: int), description (type: String),
discount (type: double) and total (type: double).
Table 1
Department
00
Description
Womens
Mens
Sportswear
Kids
Discount
20%
11
35%
50%
22
33
No discount
SAMPLE OF OUTPUT:
Enter item detail:
Department: e0
Quantity: 2
Price wi 100
Description
blomens
Quantity
Price
Total
After Discount
$160.00
100
$200.00
Another item? (Yes - 1, No
0):2 1
Enter item detail:
Department: 11
Quantity: 1
Price i 100
Description
Mens.
Quantity
Price
Total
After Discount
100
$100.00
$65.00
Another item? (Yes - 1, No - 0):z e
Total purchase: $225.e0
Exit.
hp
arrow_forward
vhgh
arrow_forward
PROGRAMMING LANGUAGE: JAVA
SUBJECT: ADVANCED OOP WITH JAVA
QUESTION NO 2:
Make a class cube with x3 (x cube) function using package. Donot use maths class.
arrow_forward
c++ question
arrow_forward
Problem 1
Create a class called Hangman with the field n (number of incorrect guesses (int)).
include an_init_ method to initialize the field value
• include a_str_ method that returns a string representation of the hangman (i.e., the
stick figure representing the number of incorrect guesses)
• include a method called incorrectGuess() that increases the value of n by 1
Problem 2
Create a class called Word with the fields word (string) and guessed (list of guessed letters).
include an_init_ method to initialize the field values
include a_str_ method that returns a string representation of the word where letters
that have not yet been guessed (are not in the guessed list) are replaced with
underscores.
• include a method called addLetter() that takes a letter as a parameter and adds it to the
guessed list.
include a method called guessLetter() that takes a letter as a parameter and checks if
that letter is in the word. The method should return true if the letter is in the word and
false…
arrow_forward
Right and salad method header for the eat method according to the UML diagram shown
arrow_forward
Java
Please help
arrow_forward
Lab Assignment 1: Write C++ program to create class name student to
print certificate with degree for student:
object 1=get degrees.
object 2=get information.
object 3
passed objl & obj2 and print them as one object. Use pass by
value.
arrow_forward
Write program in C++ Language
The other solutions on chegg were incorrect!
Please read carefully!
Write a program that defines and tests a class called COP3014. The class resembles aclassroom. It has the following grading scheme:3 quizzes 20 points each 20%Mid term 100 points 30%Final 100 points 50%Based on the total grade of any student for the course, the letter grade of each student can becomputed as follows:Any grade of 90 or more is an A, any grade of 80 or more (but less than 90) is a B, any grade of70 or more (but less than 80) is a C, any grade of 60 or more (but less than 70) is a D, and anygrade below 60 is an F.This class needs to have some member variables. The first name, last name, the Z-number, thegrades, the total grade and final letter grade are all considered to be private member variablesof this class.The class should also have the following public member functions/procedural attributes that canbring the objects (students of the class) to life and give them some…
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
- Problem C • -3: method consonants() had more than one loop • -3: method initials () had more than one loop • -3: at least one method used nested loopsarrow_forwardin python language plzarrow_forwardQuestion 1: Blood Donation For this question you will be writing a program to solve the same problem as Question 2 from Assignment 4. However, as described at the beginning of the assignment specification your solution for this assignment must not use explicit recursion. Since the purpose, contract, and examples would be identical to the solution for the Assignment 4. However, you are encouraged to properly document and fully test your solution. You are welcome to use code and tests from the model solution in your submission for this question. Here is the problem specification. Hospitals rely on donors to provide blood for people who are in accidents or scheduled for surgery. However, people have different blood types, and some blood types are compatible for donation and others are not. There are eight different blood types: O-, O+, B-, B+, A-, A+, AB-, AB+ The rules for blood donations are shown in a table from the Canadian Blood Services website. Here is a summary of that table: * A…arrow_forward
- PROGRAMMING LANGUAGE: C++ ALSO PUT SCREENSHOTS WITH EVERY TASK. TASK 1 : A class of ten students took a quiz .The grades (integers are in range 0-100) for this quiz are available to you .Determine class average on quiz . TASK 2: Write c++ code that print summery of exam result and decide either student should have makeup class or not .If more then 30% of class fails in exam it’s mean they need a makeup class otherwise they don’t need any makeup class. For class strength take input from user (Hint: take two variables pass and fail) TASK 3: write a c++ that will determine whether a department-store customer has exceeded the credit limit on the charge account .For each customer , following facts are available : Account number (an integer) Balance at beginning of month Total of all items charged by this customer this month Total of all credit applied to this customer’s account this month. Allowed credit limit You are required to use a while structure to input each of these facts ,…arrow_forwardexactly as mentioned:arrow_forwardYour task is to create two classes namely data and calculation. The calculation class is a friend of the data class. The data class will be composed of two floating point data members namely a and b. The class will also be composed of a friend function display that can display all the data members.arrow_forward
- Object-Oriented Programming - Java programming.arrow_forwardObject oriented programming Intellijarrow_forwardpython language Write a function that overwrite the greater than method for a class. The class has a field variable called score. The lower the score, the better. INPUT: Nothing? NOTE: this method is inside the class OUTPUT: Nothing is output RETURNED: The boolean result of the new comparisonarrow_forward
- Pythonarrow_forwardKnapsack Problem This exercise is due Tuesday, May 14. It has to be turned in on time in order to get participation credit. I'll come into class and go over the solution right away. Then I will collect your work on the exercise. Be ready to turn it in at that time. Fill out the table for the knapsack problem, where the objects, weights, and values are as given, and the overall weight limit is 10. Next, circle the entries in the table that are used when backtracking to find objects to use in the solution. Then list the object numbers that can be used for an optimal solution. Also list the weights and values of those objects. Verify that the values of your solution objects add up to the optimal number in the last row and column in the table. Verify that the sum of the weights of your solution the objects is not more than the overall weight limit of 10. Weight Capacity -----> obj # wt val | 0 1 2 3 4 5 6 7 8 9 10…arrow_forwardSolve in c++ Create a class product having class member’s item_code, item_name, item_price. Declare themember function input in which user feed the quantity in which he wants the product. Declare anothermember function display that calculate and display final bill. For your help, it is solve here https://www.bartleby.com/questions-and-answers/create-a-class-product-having-class-members-item_code-item_name-item_price.-declare-the-member-funct/95fba41f-e9ed-413c-9ce1-a480576b5a30arrow_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