Alex Amado, HW3
.pdf
keyboard_arrow_up
School
Purdue University *
*We aren’t endorsed by this school
Course
10100
Subject
Computer Science
Date
Dec 6, 2023
Type
Pages
10
Uploaded by MinisterPartridge3587
CS 10100 Homework 03 This is Question 1 on Page 1 CS 101 Homework 03 Due Thursday, 9/14, 11:59 pm •
Delete nothing from this file. •
Edit this file to add your typewritten answers to each question. •
When your answer includes a diagram make sure that it is clear and large enough to read. •
Ensure that your answer fits on the same page as its question. •
If you change the pagination of this file or if your complete answer to a question does not fit on the page with that question, then you may receive a lower score. •
Export your completed Word file to PDF. •
Upload your PDF file to Gradescope.com. It is your responsibility to upload this assignment to its correct place in Gradescope. You may upload multiple times. Your final upload will be scored. Use the download capability to check your upload. •
Uploading will be blocked after the due time (plus grace period). •
Max score = 10 points; 1 point per question. •
The above directions apply for all assignments uploaded to Gradescope. •
Why should your answer be on the same page with its question? Answer: Gradescope has been programmed to expect that your PDF file will have exactly one question and your entire answer to it on one page. This allows Gradescope to automatically find and display your answers to the instructional team for scoring. HW03 Q1.
One bit can encode two patterns (the pattern 0 and the pattern 1). How many patterns can 5 bits encode? How many patterns can 2 bytes encode? 5 bits can encode 32 bits because 2 to the fifth power is 32. Finding how many patterns 2 bytes can encode is a little harder to determine. Firstly, since there are 8 bits in 1 byte, you have to times 8 by 2, since there are 2 bytes. Then, you have to put 2 raised to that number, so your equation would look like: 2^(2•8), which equals 2^16, which is equal to 65, 536 different values.
CS 10100 Homework 03 This is Question 2 on Page 2 HW03 Q2.
Assume your computer stores integers using six-bit 2’s complement representation. a.
What is the range of the integers your computer can represent? The computer would be able to store integers -32 through 31 b.
What is representation of -10? 110110 c.
What the representation of -31? 100001
CS 10100 Homework 03 This is Question 3 on Page 3 HW03 Q3.
What is the binary result of the following arithmetic problems? a.
0111111 + 1010111 63 + 87 = 150 = 10010110 b.
111010 + 110110 58 + 54 = 112 = 1110000 c.
1100000 – 0011111 96 – 31 = 65 = 1000001
CS 10100 Homework 03 This is Question 4 on Page 4 HW03 Q4.
Uncle Bob wants to buy a new computer with a 1TB hard drive to store his movie collection. If each movie file is approximately 2GB in size, how many movies can Uncle Bob store on his new computer? If his storage is 1TB, and each file is 2GB in size, then he can hold 500 files. 1TB is equal to 1000GB, and 1000 divided by 2 is 500, so he can store 500 movies on his new computer.
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
Transcribed Image Text
A summer camp offers a morning session and an afternoon session. The list morningList contains the names of all children attending the morning session, and the list afternoonList contains the names of all children attending the afternoon session. Only children who attend both sessions eat lunch at the camp. The camp director wants to create lunchList, which will contain the names of children attending both sessions. The following code segment is intended to create lunchList, which is initially empty. It uses the procedure IsFound (list, name), which returns true if name is found in list and returns false otherwise. FOR EACH child IN morningList { <MISSING CODE> Which of the following could replace <MISSING CODE> so that the code segment works as intended? IF (IsFound (afternoonList, child)) { A APPEND (lunchList, child)
arrow_forward
Create a table using a two-dimensional array that stores a Fahrenheit temperate and the equivalent Celsius temperature. Use the following range of Fahrenheit temperatures
-10 through 100 in increments of 10, thus the temperatures will be
-10, 0, 10, 20, 30, 40, 50 …and so on
Display the contents of the list.
Similarly create tables/lists for the following (starting at 0 through 100 in increments of 10
Miles to kilometers
Gallons to liters
Pounds to kilograms
Inches to centimeters
Display the contents of each list
arrow_forward
Article Link:
https://www.mdpi.com/2304-6740/11/2/65Write a summary about the article
- Summarize the main idea/point(s)
- Please include excerpts from the article to emphasize a point, but it must be cited as an in-text citation. E.g. "Quote." (Author's lat name page) For example, (John 6)
arrow_forward
JAVA Script
Create a form that has a last name, a first name, an email address, a drop-down listing of 10 cities in Massachusetts. The list is to be sorted (hint: think array), an email address, and a zip code field. Each field is to be process through a validation function. You may use one function for each but if you are creative you should be able to use just one function. The drop-down listing will not require validation because they will be choosing from a list that you are providing.
This input from must be styled and show an effect to the user as to which field that are currently providing input.
arrow_forward
Teams.txt .This file contains a list of serveral Major League baseball teams in alphabetical order. Each team is listed in the file has won the World Series at least once.
WorldSeries Winners.txt - This file contains a chronological list of the World Series' winning teams from 1903-2020. (The first line of the file is the name of the team that won in 1903, and the last line is the name of the team that won in 2020. Note the World Series was not played in 1904 or 1994.)
Write a program that displays the contents of the Teams.txt file on the screen and prompts the user to enter the name of one of the teams. The program should then display the number of times that team has won the World Series in the time period from 1903 to 2020.
In the program, 2 arrays are needed: TeamList array and Winners array.
TeamList array will contain the entries in Teams.txt.
Winners array will contain the entries in WorldSeriesWinners.txt.
Use a search algorithm to validate if the entry from the user is…
arrow_forward
PYTHON CODE
Using Artists.csv (link below), write a query that returns all lines that are female artists only, with begin date greater than 1950 but no greater than 2000
Write a query that will return all lines of British Male artists, who's first names starts with the letter ‘A’ and has an end date earlier than 1990
Write a query that will write to a file all lines that have Japanese Artists who’s difference of end date and begin date exceeds 100 years. I.e. if artist begins in 1900 and ends in 2005, then they would be included in the output (2005-1900 = 105 years)
Write a query that will write and find to a file the artist who’s been at the Museum the longest (the widest gap between Begin Date and End Date)
Artists.csv: https://media.githubusercontent.com/media/MuseumofModernArt/collection/master/Artists.csv
arrow_forward
House Building [Code should be in python] You are to draw a House using the base primitives: points, lines, or triangles. You can use GL_POINTS, GL_LINES or GL_TRIANGLES for designing this house. A diagram has been provided as an example. You can modify the house design to your liking.
arrow_forward
Transcribed Image Text
/* you have a sceneraio for recruting app */ In which you have two types of Record type on Position Object one is for Technical and one is non technical Record type. you have to write a SOQL query to fetch All the reocrd type of the ID of Technical Record Type. Please Run the SOQL Query on the Anonymous Window. also please attach the screenshot of the output. Apex, Salesforce
arrow_forward
R Script Homework 4
Using RStudio, create a new R script and save it as: "CMSC4103 Your Name HW4 R. For student John
Doe, the file would be named "CMSC4103_JohnDoe HWAR". Then do the following:
1) Create or read an existing data frame containing
a) A character column that acts as a label and has unique values in each row
b) 2 or more numeric columns on the same scale (eg prices, counts, test scores, etc.)
C
2) Find the mean, standard deviation, and interquartile range of both original numeric variables,
allowing for missing values.
3) Create a new variable that is a function of the 2 numeric variables.
4) Create a rank variable for at least 1 numeric variable.
5) Use ggplot2 to:
a) Create a "publication ready" plot of 2 or more variables to help explain the data.
b) Create a "publication ready" plot that includes at least one rank variable to help explain the
data
$
C
4
E R
F
Search or type URL
5
:
T
6
Y
G H
49
&
7
★
U
8
1
9
J K
0
arrow_forward
Search Algorithms
Dataset: We will use cars dataset as part of this project. The dataset is available as part of the assignment (cars.csv and a pdf that describe each of the fields for each record).
TASK 1
The idea of this project is to create a text-based application with the following options:
List all cars. This option will read from the file and when the user selects this option, the program will list all the cars in the file.
Find via Linear search. This option will allow the user to type a model of the car (ID field in the dataset) and it should print out the information about the car searched, the amount of time it took to find the car using linear search. For this option, create a class called SearchMethods and implement the method :
public static <T extends Comparable<T>> int linearSearch(T[] data, int min, int max, T target)
Find via Binary search. This option will allow the user to type a model of the car (ID field in the dataset) and it…
arrow_forward
Using the data file below design a hierarchical struct to organize the data. Then declare an array of structs for the reservations. The data file contains ten reservations. There are 8 columns of data: party name, size, date and time for the reservation, phone number, email address, credit card number and expiration date for the credit card. The data can be read from the file below so you will not need to type it in repeatedly.
Once you have populated the array with data perform the following tasks:
Write a function that will print out to the screen the information for one reservation.In the main program write code that prompts the user to enter a date in the form MM DD YYYYCall the function to print out all reservations on that date. You can make a loop that calls the print function repeatedly or you can put that code inside the print function.TEST CASES: April 30, 2023 and May 12, 2023.
In this example you need to carefully consider what data types to use. For example, the credit…
arrow_forward
Using the data file below design a hierarchical struct to organize the data. Then declare an array of structs for the reservations. The data file contains ten reservations. There are 8 columns of data: party name, size, date and time for the reservation, phone number, email address, credit card number and expiration date for the credit card. The data can be read from the file below so you will not need to type it in repeatedly.
Once you have populated the array with data perform the following tasks:
Write a function that will print out to the screen the information for one reservation.In the main program write code that prompts the user to enter a date in the form MM DD YYYYCall the function to print out all reservations on that date. You can make a loop that calls the print function repeatedly or you can put that code inside the print function.TEST CASES: April 30, 2023 and May 12, 2023.
In this example you need to carefully consider what data types to use. For example, the credit…
arrow_forward
Create a new workbook as shown below and save the file with the name "Call Statistics".
1
Panda EST
Monthly Sales Report - July
2
3
Sales Amount
1600
1800
Total Salary
4 Emp. No. Name
5 S101
6 S105
7 S112
8 s107
9 S110
Salary
Comission
2500 ?
3000
Ahmed
Hassan
Ali
1500
2200
Waleed
Mohammed
Samir
4500
3500
2000
1700
10 s103
1600
2500
11
Totals
Average
Highest
Lowest
Count
12
13
12
14
15
16
a) Create the worksheet shown above.
b) Set the column widths as follows: Column A: 8, Column B: 14, Columns C & D: 15, Columns E
& F: 14.
c) Enter the formula to find COMMISSION for the first employee. The commission rate is 2% of
sales, COMMISSION = SALES * 2% Copy the formula to the remaining employees.
d) Enter the formula to find TOTAL SALARY for the first employee where: TOTAL SALARY =
SALARY + COMMISSION Copy the formula to the remaining employees.
e) Enter formula to find TOTALS, AVERAGE, HIGHEST, LOWEST, and COUNT values. Copy
the formula to each column.
f) Format numeric data to include…
arrow_forward
def read_cars(full_path_file_name):"""Read the data from csv file given full path file name (including directory)Return a list of Car instances:param full_path_name: csv file:return: list of instances of the Car class"""
file:
2017,Subaru,WRX,268,32722000,Honda,Civic Si,160,26122020,Lamborghini,Aventador S,729,34722017,Subaru,WRX,268,32722000,Honda,Civic Si,160,26122020,Lamborghini,Aventador S,729,34722017,Subaru,WRX,268,32722000,Honda,Civic Si,160,26122020,Lamborghini,Aventador S,729,34722020,Lamborghini,Huracan,729,3472
arrow_forward
LINKS :
https://youtu.be/rR_mmsfIzzs
Input for games - UWP applications | Microsoft Learn
arrow_forward
displayComments a. Dependencies: getPostComments, createComments b. Is an async function c. Receives a postId as a parameter d. Creates a section element with document.createElement() e. Sets an attribute on the section element with section.dataset.postId f. Adds the classes 'comments' and 'hide' to the section element g. Creates a variable comments equal to the result of await getPostComments(postId); h. Creates a variable named fragment equal to createComments(comments) i. Append the fragment to the section j. Return the section element
In JavaScript please
arrow_forward
PYTHON PROGRAMMING
Using the file Artists.csv (link below) iterate through the list and print out the data in its entirety
Create some queries with the file by searching for all artists who are male and born in America (Nationality = American)
Make another query and print out all the individuals who are not American and female.
Additionally, query the file for all artists who were born before 1900 and print it to the screen
Artists.csv: https://media.githubusercontent.com/media/MuseumofModernArt/collection/master/Artists.csv
arrow_forward
the "list.txt" contains information about materials stored in the warehouse. Every record (line) in the file contains code, name and description seperated by "#"
write a php script that will open the file, read the content of the file and manupulate using associative array with code as a key.
the array should be sorted by the code and displayed to the user.
arrow_forward
The accompanying Gradebook spreadsheet contains a partially completed spreadsheet model for computing and summarizing the grades for a class. Complete the spreadsheet model by entering and copying the formulas in the appropriate cells. Cell range H4:H17 should contain the course number grades using the grades from exams and homework assignments and the grade allocation in row 22. Cell range I4:I17 should contain the course letter grades based on the grading criteria in cell range K4:L8. Rows 19, 20, and 21 should contain the average, maximum, and minimum exam, homework, and course number grades. You should only enter each formula once and copy the formulas to other cells.
Gradebook
Student ID
Exam 1
Exam 2
Exam 3
Homework 1
Homework 2
Homework 3
Course Number Grade
Course Letter Grade
Grading Criteria
000-01-5562
60
50
40
79
92.0
76
0
F
000-01-2667
80
71
70
84
81.0
90
60
D
000-01-7376
65
65
65
60
90.0
94
70
C
000-01-1986…
arrow_forward
Write the Java statement to create an instance of a Rectangle with a width of 4 and a length of 8.
Edit View Insert Format Tools Table
arrow_forward
In Java Language Write Code below Image
arrow_forward
____ the number of arrangements of n objects in a given order of the objects r at a time.
arrow_forward
create a program for a veterinarian's office that will allow the user/receptionist to add, update, delete, view all animals and search for animals. Your structure should contain no less than 8 characters.
arrow_forward
Directions: Read each item carefully. Create command/codes based on the information requested on each item. (R programming)
Create a list that contains a numeric vector from (1 to 30, 34, 45, 47, and 50 to 70), a character vector that repeat the elements A, B, and C 30 times, and a 2 x 3 matrix that contains a number from 101 to 106 filled by rows.
arrow_forward
PYTHONPLEASE ALSO SHARE CODE THROUGH LINK: online-python(dot)comAlso screenshot code with correct indentation
Create a python program that reads the student information from a tab separated values (tsv) file. The python program then must creates a text file that will records the course grades of the students. Each row of the tsv file contains the Last Name, First Name, Midtrm1 score, Midtrm2 score, and the Final score of a student. A sample of the student information is provided in StudentInfoScore.tsv. Assume the number of students is at least 1 and at most 20.
The program performs the following tasks:
Read the file name of the tsv file from the user.
Open the tsv file and read the student information.
Compute the average exam score of each student.
Assign a letter grade to each student based on the average exam score in the following scale:
A: 90 =< x
B: 80 =< x < 90
C: 70 =< x < 80
D: 60 =< x < 70
F: x < 60
Compute the average of each exam.
Output the…
arrow_forward
Can somebody help me with my homework? I provided screenshots of my code that goes alongside the question.
*Side note comments would be helpful, but not required.
arrow_forward
Automatic Indexes: Starting with the program from 16-2 which processes Death Valley data, modify the program such that it sets the temperature ranges based on the data contained in the file. Allow for the graph to display 10 degrees above the highest max and 10 degrees below the lowest minimum temperature. Use the station name to automatically generate an appropriate title for your graph as well.
arrow_forward
Print Person Information from file
In this lab you are asked to complete the function : print_person_from_file(person_name, filename). This function should
read in data from the file filename and print the information for person_name if it is found in the file.
The file filename contains lines, in comma separated format (with a 'csv' extension) For each line, the items in each field are as follows:
Field
1
3
4
Name
Place of Birth Date of Birth Children
For Children:
• a person can have 0, 1 or multiple Children
Multiple children are semi-colon separated
If a person has no children the field contains 'NA'
For example, consider the following lines froma .csv file, where Fletcher_Margaret has 3 children, and Baker_Jill has 0 children
(field 4 contains the string 'NA')
Fletcher Margaret,Sydney,30-09-1921,Green Bob;Green Nancy;William Tom
Baker_Jill, Melbourne,08-09-1973, NA
Format for Printing
If the person_name is found in the file, the format for printing the person information is as…
arrow_forward
AutoSave O ff
INT201 0OP_Lab8_ 2020-2 - Protected View - Saved to this PC
Search
Anass Alhami
困
File
Home
Insert
Draw
Design
Layout
References
Mailings
Review
View
Help
A Share
O Comments
PROTECTED VIEW Be careful-files from the Internet can contain viruses. Unless you need to edit, it's safer to stay in Protected View.
Enable Editing
Exercise 1
Write a recursive method that returns the sum of the squares of the first n positive integers. Test your
method.
Exercise 2
Write a recursive method that returns the sum of the first n odd positive integers. Test your method.
Exercise 3
Write a recursive method that returns the sum of the first n elements of an array. Test your method.
Exercise 4
Write a recursive method that returns the power x". Test your method.
Exercise 5
Write a recursive Boolean method that determines whether a string is a palindrome. Test your method.
Exercise 6
Write a recursive method that returns a string that contains the binary representation of a positive
integer.…
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:9781337508841
Author:Carey
Publisher:Cengage
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:9780357392676
Author:FREUND, Steven
Publisher:CENGAGE L
Related Questions
- Transcribed Image Text A summer camp offers a morning session and an afternoon session. The list morningList contains the names of all children attending the morning session, and the list afternoonList contains the names of all children attending the afternoon session. Only children who attend both sessions eat lunch at the camp. The camp director wants to create lunchList, which will contain the names of children attending both sessions. The following code segment is intended to create lunchList, which is initially empty. It uses the procedure IsFound (list, name), which returns true if name is found in list and returns false otherwise. FOR EACH child IN morningList { <MISSING CODE> Which of the following could replace <MISSING CODE> so that the code segment works as intended? IF (IsFound (afternoonList, child)) { A APPEND (lunchList, child)arrow_forwardCreate a table using a two-dimensional array that stores a Fahrenheit temperate and the equivalent Celsius temperature. Use the following range of Fahrenheit temperatures -10 through 100 in increments of 10, thus the temperatures will be -10, 0, 10, 20, 30, 40, 50 …and so on Display the contents of the list. Similarly create tables/lists for the following (starting at 0 through 100 in increments of 10 Miles to kilometers Gallons to liters Pounds to kilograms Inches to centimeters Display the contents of each listarrow_forwardArticle Link: https://www.mdpi.com/2304-6740/11/2/65Write a summary about the article - Summarize the main idea/point(s) - Please include excerpts from the article to emphasize a point, but it must be cited as an in-text citation. E.g. "Quote." (Author's lat name page) For example, (John 6)arrow_forward
- JAVA Script Create a form that has a last name, a first name, an email address, a drop-down listing of 10 cities in Massachusetts. The list is to be sorted (hint: think array), an email address, and a zip code field. Each field is to be process through a validation function. You may use one function for each but if you are creative you should be able to use just one function. The drop-down listing will not require validation because they will be choosing from a list that you are providing. This input from must be styled and show an effect to the user as to which field that are currently providing input.arrow_forwardTeams.txt .This file contains a list of serveral Major League baseball teams in alphabetical order. Each team is listed in the file has won the World Series at least once. WorldSeries Winners.txt - This file contains a chronological list of the World Series' winning teams from 1903-2020. (The first line of the file is the name of the team that won in 1903, and the last line is the name of the team that won in 2020. Note the World Series was not played in 1904 or 1994.) Write a program that displays the contents of the Teams.txt file on the screen and prompts the user to enter the name of one of the teams. The program should then display the number of times that team has won the World Series in the time period from 1903 to 2020. In the program, 2 arrays are needed: TeamList array and Winners array. TeamList array will contain the entries in Teams.txt. Winners array will contain the entries in WorldSeriesWinners.txt. Use a search algorithm to validate if the entry from the user is…arrow_forwardPYTHON CODE Using Artists.csv (link below), write a query that returns all lines that are female artists only, with begin date greater than 1950 but no greater than 2000 Write a query that will return all lines of British Male artists, who's first names starts with the letter ‘A’ and has an end date earlier than 1990 Write a query that will write to a file all lines that have Japanese Artists who’s difference of end date and begin date exceeds 100 years. I.e. if artist begins in 1900 and ends in 2005, then they would be included in the output (2005-1900 = 105 years) Write a query that will write and find to a file the artist who’s been at the Museum the longest (the widest gap between Begin Date and End Date) Artists.csv: https://media.githubusercontent.com/media/MuseumofModernArt/collection/master/Artists.csvarrow_forward
- House Building [Code should be in python] You are to draw a House using the base primitives: points, lines, or triangles. You can use GL_POINTS, GL_LINES or GL_TRIANGLES for designing this house. A diagram has been provided as an example. You can modify the house design to your liking.arrow_forwardTranscribed Image Text /* you have a sceneraio for recruting app */ In which you have two types of Record type on Position Object one is for Technical and one is non technical Record type. you have to write a SOQL query to fetch All the reocrd type of the ID of Technical Record Type. Please Run the SOQL Query on the Anonymous Window. also please attach the screenshot of the output. Apex, Salesforcearrow_forwardR Script Homework 4 Using RStudio, create a new R script and save it as: "CMSC4103 Your Name HW4 R. For student John Doe, the file would be named "CMSC4103_JohnDoe HWAR". Then do the following: 1) Create or read an existing data frame containing a) A character column that acts as a label and has unique values in each row b) 2 or more numeric columns on the same scale (eg prices, counts, test scores, etc.) C 2) Find the mean, standard deviation, and interquartile range of both original numeric variables, allowing for missing values. 3) Create a new variable that is a function of the 2 numeric variables. 4) Create a rank variable for at least 1 numeric variable. 5) Use ggplot2 to: a) Create a "publication ready" plot of 2 or more variables to help explain the data. b) Create a "publication ready" plot that includes at least one rank variable to help explain the data $ C 4 E R F Search or type URL 5 : T 6 Y G H 49 & 7 ★ U 8 1 9 J K 0arrow_forward
- Search Algorithms Dataset: We will use cars dataset as part of this project. The dataset is available as part of the assignment (cars.csv and a pdf that describe each of the fields for each record). TASK 1 The idea of this project is to create a text-based application with the following options: List all cars. This option will read from the file and when the user selects this option, the program will list all the cars in the file. Find via Linear search. This option will allow the user to type a model of the car (ID field in the dataset) and it should print out the information about the car searched, the amount of time it took to find the car using linear search. For this option, create a class called SearchMethods and implement the method : public static <T extends Comparable<T>> int linearSearch(T[] data, int min, int max, T target) Find via Binary search. This option will allow the user to type a model of the car (ID field in the dataset) and it…arrow_forwardUsing the data file below design a hierarchical struct to organize the data. Then declare an array of structs for the reservations. The data file contains ten reservations. There are 8 columns of data: party name, size, date and time for the reservation, phone number, email address, credit card number and expiration date for the credit card. The data can be read from the file below so you will not need to type it in repeatedly. Once you have populated the array with data perform the following tasks: Write a function that will print out to the screen the information for one reservation.In the main program write code that prompts the user to enter a date in the form MM DD YYYYCall the function to print out all reservations on that date. You can make a loop that calls the print function repeatedly or you can put that code inside the print function.TEST CASES: April 30, 2023 and May 12, 2023. In this example you need to carefully consider what data types to use. For example, the credit…arrow_forwardUsing the data file below design a hierarchical struct to organize the data. Then declare an array of structs for the reservations. The data file contains ten reservations. There are 8 columns of data: party name, size, date and time for the reservation, phone number, email address, credit card number and expiration date for the credit card. The data can be read from the file below so you will not need to type it in repeatedly. Once you have populated the array with data perform the following tasks: Write a function that will print out to the screen the information for one reservation.In the main program write code that prompts the user to enter a date in the form MM DD YYYYCall the function to print out all reservations on that date. You can make a loop that calls the print function repeatedly or you can put that code inside the print function.TEST CASES: April 30, 2023 and May 12, 2023. In this example you need to carefully consider what data types to use. For example, the credit…arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Np Ms Office 365/Excel 2016 I NtermedComputer ScienceISBN:9781337508841Author:CareyPublisher:CengageCOMPREHENSIVE MICROSOFT OFFICE 365 EXCEComputer ScienceISBN:9780357392676Author:FREUND, StevenPublisher:CENGAGE L
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:9781337508841
Author:Carey
Publisher:Cengage
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:9780357392676
Author:FREUND, Steven
Publisher:CENGAGE L