Kimberlymagerl
On this page, you find all documents, package deals, and flashcards offered by seller kimberlymagerl.
- 7
- 0
- 1
Community
- Followers
- Following
1 Reviews received
8 items
ITS 320 Critical Thinking and Portfolio Assignment Full Code
ITS 320 Basic Programming critical thinking assignments and portfolio full code. 100% on all assignments.
- Package deal
- • 6 items •
- ITS 320 Module 8 Portfolio Option 1 • Essay
- ITS 320 Module 6 Critical Thinking Option 2 • Essay
- ITS 320 Module 5 Critical Thinking Option 1 • Essay
- ITS 320 Module 4 Critical Thinking Option 1 • Essay
- ITS 320 Module 3 Critical Thinking Option 1 • Essay
- And more ….
ITS 320 Basic Programming critical thinking assignments and portfolio full code. 100% on all assignments.
ITS 320 Module 1 Critical Thinking Option 1
Option #1: Create a Python Application 
Write a Python Program that outputs this mouse: Assignment Instructions
- Essay
- • 2 pages •
Option #1: Create a Python Application 
Write a Python Program that outputs this mouse: Assignment Instructions
ITS 320 Module.2 Critical Thinking Option 2
Option #2: Create a Python Application 
Assignment Instructions 
Develop a Python application that incorporates using appropriate data types and provides program output in a logical manner. Your program should prompt a user to enter a car brand, model, year, starting odometer reading, an ending odometer reading, and the estimated miles per gallon consumed by the vehicle. Store your data in a dictionary and print out the contents of the dictionary.
- Package deal
- Essay
- • 2 pages •
Option #2: Create a Python Application 
Assignment Instructions 
Develop a Python application that incorporates using appropriate data types and provides program output in a logical manner. Your program should prompt a user to enter a car brand, model, year, starting odometer reading, an ending odometer reading, and the estimated miles per gallon consumed by the vehicle. Store your data in a dictionary and print out the contents of the dictionary.
ITS 320 Module 3 Critical Thinking Option 1
Option #1: Creating a Program to Calculate the Value of a Ferrari 
Assignment Instructions 
Implement a program that reads in a year and outputs the approximate value of a Ferrari 250 GTO in that year. Use the following table that describes the estimated value of a GTO at different times since 1962. 
Year	Value 
1962-1964	$18,500 
1965-1968	$6,000 
1969-1971	$12,000 
1972-1975	$48,000 
1976-1980	$200,000 
1981-1985	$650,000 
1986-2012	$35,000,000 
2013-2014	$52,000,000
- Package deal
- Essay
- • 3 pages •
Option #1: Creating a Program to Calculate the Value of a Ferrari 
Assignment Instructions 
Implement a program that reads in a year and outputs the approximate value of a Ferrari 250 GTO in that year. Use the following table that describes the estimated value of a GTO at different times since 1962. 
Year	Value 
1962-1964	$18,500 
1965-1968	$6,000 
1969-1971	$12,000 
1972-1975	$48,000 
1976-1980	$200,000 
1981-1985	$650,000 
1986-2012	$35,000,000 
2013-2014	$52,000,000
ITS 320 Module 4 Critical Thinking Option 1
Option #1: Repetition Control Structure - Five Floating Point Numbers 
Assignment Instructions 
Write a program that utilizes a loop to read a set of five floating-point values from user input. Ask the user to enter the values, then print the following data: 
•	Total 
•	Average 
•	Maximum 
•	Minimum 
•	Interest at 20% for each original value entered by the user. 
•	Use the formula: Interest_Value = Original_value + Original_value*0.2
- Package deal
- Essay
- • 3 pages •
Option #1: Repetition Control Structure - Five Floating Point Numbers 
Assignment Instructions 
Write a program that utilizes a loop to read a set of five floating-point values from user input. Ask the user to enter the values, then print the following data: 
•	Total 
•	Average 
•	Maximum 
•	Minimum 
•	Interest at 20% for each original value entered by the user. 
•	Use the formula: Interest_Value = Original_value + Original_value*0.2
ITS 320 Module 5 Critical Thinking Option 1
Option #1: String Values in Reverse Order 
Assignment Instructions 
•	Write a Python function that will work on three strings. The function will return to the user a concatenation of the string values in reverse order. The function is to be called from the main program. 
•	In the main program, prompt the user for the three strings and pass these values to the function
- Package deal
- Essay
- • 2 pages •
Option #1: String Values in Reverse Order 
Assignment Instructions 
•	Write a Python function that will work on three strings. The function will return to the user a concatenation of the string values in reverse order. The function is to be called from the main program. 
•	In the main program, prompt the user for the three strings and pass these values to the function
ITS 320 Module 6 Critical Thinking Option 2
Option #2: List Computations 
Assignment Instructions 
Compute their Cartesian product, AxB of two lists. Each list has no more than 10 numbers. 
For example, if the user supplies the two input lists: 
A = [1,2] 
B = [3,4] 
then the Cartesian product output should be: 
AxB = [(1,3),(1,4),(2,3),(2,4)]
- Package deal
- Essay
- • 2 pages •
Option #2: List Computations 
Assignment Instructions 
Compute their Cartesian product, AxB of two lists. Each list has no more than 10 numbers. 
For example, if the user supplies the two input lists: 
A = [1,2] 
B = [3,4] 
then the Cartesian product output should be: 
AxB = [(1,3),(1,4),(2,3),(2,4)]
ITS 320 Module 8 Portfolio Option 1
Final program: 
Create a final program that meets the requirements outlined below. 
 
Create an automobile class that will be used by a dealership as a vehicle inventory program. The following attributes should be present in your automobile class: 
private string make 
private string model 
private string color 
private int year 
private int mileage 
Your program should have appropriate methods such as: 
 
constructor 
add a new vehicle 
remove a vehicle 
update vehicle attributes 
At the end o...
- Package deal
- Essay
- • 10 pages •
Final program: 
Create a final program that meets the requirements outlined below. 
 
Create an automobile class that will be used by a dealership as a vehicle inventory program. The following attributes should be present in your automobile class: 
private string make 
private string model 
private string color 
private int year 
private int mileage 
Your program should have appropriate methods such as: 
 
constructor 
add a new vehicle 
remove a vehicle 
update vehicle attributes 
At the end o...
ITS 320 Module 3 Critical Thinking Option 1