SlideShare ist ein Scribd-Unternehmen logo
1 von 10
Downloaden Sie, um offline zu lesen
PRG 211 All Assignments
FOR MORE CLASSES VISIT
www.prg211cart.com
PRG 211 Week 1 Individual University Project Problem Solving with
Algorithms
PRG 211 Week 2 Individual Tip, Tax, and Total
PRG 211 Week 2 Individual University Project Using Selection and
Iteration I
PRG 211 Week 3 Individual Yum Yum Burger Joint
PRG 211 Week 3 Individual University Project Using Selection and
Iteration II
PRG 211 Week 4 Individual Lab 9-5 Going Green
PRG 211 Week 4 Individual University Project Using Arrays
PRG 211 Week 5 Individual University Project Using Files
==============================================
PRG 211 Week 1 Individual University Project Problem Solving
with Algorithms
FOR MORE CLASSES VISIT
www.prg211cart.com
PRG 211 Week 1 Individual University Project Problem Solving with
Algorithms
During this course you will design a program for a state university. The
university needs a website design that will enable students to order
books online. Each week you will receive additional instructions for the
elements of the design based on the needs of the university. The
elements will correspond with the concepts and skills you learn that
week.
According to the university’s website design request, students need to
order five books, one for each of the five required courses that all
students take. You need to design a program that will prompt students
for the price of each book and display the total cost for the five books.
Create a 1- to 1 3/4-page document listing the steps needed to solve the
problem using an algorithm, including the following:
 Identify the input needed
 Define what the input must do (i.e., the process)
 Show what the output must produce
Create a 1/2- to 1-page document of your pseudocode based on the
algorithm, including the following:
 Write the pseudocode statement(s) forthe input
 Write the pseudocode statement(s) for the process
 Write the pseudocode statement(s) for the output
Create a 1-page flowchart based on the algorithm, including the
following:
 Mark the program’s starting point
 Represent the input steps in the program
 Represent the process steps in the program
 Represent the output steps in the program
 Mark the program’s ending point
Submit your assignment using the Assignment Files tab.
==============================================
PRG 211 Week 2 Individual Tip, Tax, and Total
FOR MORE CLASSES VISIT
www.prg211cart.com
PRG 211 Week 2 Individual Tip, Tax, and Total
Complete the Lab 4-6, ―Programming Challenge 1 – Tip, Tax, and
Total,‖ of Starting Out with Programming Logic and Design.
Note: You are only required to create the pseudocode for this activity;
however, notice how the pseudocode compares to the given Python code
for this assignment.
Submit your assignment using the Assignment Files tab.
==============================================
PRG 211 Week 2 Individual University Project Using Selection
and Iteration I
FOR MORE CLASSES VISIT
www.prg211cart.com
PRG 211 Week 2 Individual University Project: Using Selection and
Iteration I
The university reassessed its needs for the website design and
determined it will no longer require all students to take five classes.
Update the website program to reflect the following changes:
 Prompt the student for the number of courses being taken
 Use a while loop to prompt the student for the price of each book
based upon the number of classes being taken
 After the price of each book has been entered, prompt the user for
shipping options: delivery or pick-up
 Use an if statement to add the charges to the total price if the shipping
charges are greater than 0
 Display the total cost
Create a 1/2- to 1-page document containing pseudocode based on the
revised program needs. Add this to the revised program pseudocode
from the Week One Individual Assignment, Problem Solving with
Algorithms.
Create a 1-page flowchart based on the algorithm for the revised
program needs. Add this to the revised program flowchart from the
Week One Individual Assignment, Problem Solving with Algorithms.
Submit your assignment using the Assignment Files tab.
==============================================
PRG 211 Week 3 Individual University Project Using Selection
and Iteration II
FOR MORE CLASSES VISIT
www.prg211cart.com
PRG 211 Week 3 Individual: University Project: Using Selection and
Iteration II
The university would like to remind students to pick-up their books at
the bookstore if they choose not to have books delivered.
Revise the website program to reflect the following changes:
 Prompt the student for the number of courses being taken
 Use a for loop to prompt the student for the price of each book based
upon the number of classes being taken
 After the price of each book has been entered, display the total price
of the books
 Prompt the user for the following shipping options: delivery or pick-
up
 Use an if-then-else statement to add the charges to the total price if
the shipping charges are greater than 0
 If there are shipping charges, display the total charges and shipping
date
 If there are no shipping charges, display the total charges and a
message indicating that the books can be picked up at the bookstore
Create a 1/2- to 1-page document containing pseudocode based on the
revised program needs.
Create a 1-page flowchart based on the algorithm for the revised
program needs.
Submit your assignment using the Assignment Files tab.
==============================================
PRG 211 Week 3 Individual Yum Yum Burger Joint
FOR MORE CLASSES VISIT
www.prg211cart.com
PRG 211 Week 3 Individual Yum Yum Burger Joint
Complete the Lab 5-5, ―Programming Challenge 1 – Yum Yum Burger
Joint,‖ of Starting Out with Programming Logic and Design .
Note: You are only required to create the flowchart for this activity;
however, notice how the pseudocode compares to the given Python code
for this assignment.
Submit your assignment using the Assignment Files tab.
==============================================
PRG 211 Week 4 Individual Lab 9-5 Going Green
FOR MORE CLASSES VISIT
www.prg211cart.com
PRG 211 Week 4 Individual Going Green
Complete the Lab 9-5, ―Programming Challenge 1 — Going Green,‖ of
Starting Out with Programming Logic and Design.
Note: You are only required to create the flowchart for this activity;
however, notice how the pseudocode compares to the given Python code
for this assignment.
Submit your assignment using the Assignment Files tab.
==============================================
PRG 211 Week 4 Individual University Project Using Arrays
FOR MORE CLASSES VISIT
www.prg211cart.com
PRG 211 Week 4 Individual: University Project: Using Arrays
The university updated its website program design request with a few
more features to fit its needs.
Update the website program to reflect the following changes:
 Use an array to prompt the user to entera credit card account number
 Use the sequential search algorithm to locate the credit card number
entered by the user
 If the credit card number is not in the array, display a message
indicating the number is invalid
 If the credit card number is in the array, display a message indicating
the credit card number is valid
Create a 1/2- to 1-page document containing pseudocode based on the
revised program needs. Add the pseudocode statements to the existing
pseudocode program.
Create a 1- to 2-page flowchart based on the algorithm for the revised
program needs. Add the flowchart structure in the existing flowchart for
the program.
Submit your assignment using the Assignment Files tab.
==============================================
PRG 211 Week 5 Individual University Project Using Files
FOR MORE CLASSES VISIT
www.prg211cart.com
PRG 211 Week 5 Individual University Project: Using Files
For completion of the program, use arrays and files.
Instead of prompting the user for the prices of the book, update the
website program to reflect the following changes:
 Read the prices into an array from afile using a loop
 Use a second loop to sum the values stored in the array after the prices
of all the books have been read
 Write the content of the array to a second file
Create a 1/2- to 1-page document containing pseudocode based on the
revised program needs. Replace the pseudocode statements in the
existing pseudocode program.
Create a 1- to 2-page flowchart based on the algorithm for the revised
program needs. Replace the flowchart structure in the existing flowchart
for the program.
Submit your assignment using the Assignment Files tab.
==============================================
PRG 211 CART Education Fabulous--prg211cart.com

Weitere ähnliche Inhalte

Ähnlich wie PRG 211 CART Education Fabulous--prg211cart.com

PRG/211 ENTIRE CLASS UOP TUTORIALS
PRG/211 ENTIRE CLASS UOP TUTORIALSPRG/211 ENTIRE CLASS UOP TUTORIALS
PRG/211 ENTIRE CLASS UOP TUTORIALSSharon Reynolds
 
PRG 420 Wonderful Education--prg420.com
PRG 420 Wonderful Education--prg420.comPRG 420 Wonderful Education--prg420.com
PRG 420 Wonderful Education--prg420.comJaseetha39
 
PRG 420 Redefined Education--prg420.com
PRG 420 Redefined Education--prg420.comPRG 420 Redefined Education--prg420.com
PRG 420 Redefined Education--prg420.comagathachristie229
 
PRG 420 Education Fabulous--prg420.com
PRG 420 Education Fabulous--prg420.comPRG 420 Education Fabulous--prg420.com
PRG 420 Education Fabulous--prg420.comsrivani514
 
PRG 420 Introduction Education--prg420.com
PRG 420 Introduction Education--prg420.comPRG 420 Introduction Education--prg420.com
PRG 420 Introduction Education--prg420.comkopiko227
 
PRG 420 NERD Achievement Education--prg420nerd.com
PRG 420 NERD Achievement Education--prg420nerd.comPRG 420 NERD Achievement Education--prg420nerd.com
PRG 420 NERD Achievement Education--prg420nerd.comagathachristie191
 
POS 408 Creative and Effective/newtonhelp.com
POS 408 Creative and Effective/newtonhelp.comPOS 408 Creative and Effective/newtonhelp.com
POS 408 Creative and Effective/newtonhelp.commyblue99
 
POS 408 Extraordinary Life/newtonhelp.com 
POS 408 Extraordinary Life/newtonhelp.com POS 408 Extraordinary Life/newtonhelp.com 
POS 408 Extraordinary Life/newtonhelp.com myblue39
 
POS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.comPOS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.commyblue69
 
PRG 421 Entire Course
PRG 421 Entire CoursePRG 421 Entire Course
PRG 421 Entire CourseDR Dean Jame
 
CMGT 410 HOMEWORK Education Planning--cmgt410homework.com
CMGT 410 HOMEWORK Education Planning--cmgt410homework.comCMGT 410 HOMEWORK Education Planning--cmgt410homework.com
CMGT 410 HOMEWORK Education Planning--cmgt410homework.comcampfort8
 
CIS 498 Focus Dreams/newtonhelp.com
CIS 498 Focus Dreams/newtonhelp.comCIS 498 Focus Dreams/newtonhelp.com
CIS 498 Focus Dreams/newtonhelp.combellflower88
 
MGT 402 help Successful Learning/Snaptutorial
MGT 402 help Successful Learning/SnaptutorialMGT 402 help Successful Learning/Snaptutorial
MGT 402 help Successful Learning/Snaptutorialwilliamtrumpz4k
 
MGT 402 help A Guide to career/Snaptutorial
MGT 402 help A Guide to career/SnaptutorialMGT 402 help A Guide to career/Snaptutorial
MGT 402 help A Guide to career/Snaptutorialwilliamtrumpz2F
 
PRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.comPRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.comkopiko76
 
PRG 420 Inspiring Innovation--prg420.com
PRG 420 Inspiring Innovation--prg420.comPRG 420 Inspiring Innovation--prg420.com
PRG 420 Inspiring Innovation--prg420.comkopiko112
 
CIS 518 STUDY Achievement Education--cis518study.com
CIS 518 STUDY Achievement Education--cis518study.comCIS 518 STUDY Achievement Education--cis518study.com
CIS 518 STUDY Achievement Education--cis518study.comclaric156
 
CIS 518 STUDY Become Exceptional--cis518study.com
CIS 518 STUDY Become Exceptional--cis518study.comCIS 518 STUDY Become Exceptional--cis518study.com
CIS 518 STUDY Become Exceptional--cis518study.comclaric105
 

Ähnlich wie PRG 211 CART Education Fabulous--prg211cart.com (20)

PRG/211 ENTIRE CLASS UOP TUTORIALS
PRG/211 ENTIRE CLASS UOP TUTORIALSPRG/211 ENTIRE CLASS UOP TUTORIALS
PRG/211 ENTIRE CLASS UOP TUTORIALS
 
Prg 211 prg211
Prg 211 prg211Prg 211 prg211
Prg 211 prg211
 
PRG 420 Wonderful Education--prg420.com
PRG 420 Wonderful Education--prg420.comPRG 420 Wonderful Education--prg420.com
PRG 420 Wonderful Education--prg420.com
 
PRG 420 Redefined Education--prg420.com
PRG 420 Redefined Education--prg420.comPRG 420 Redefined Education--prg420.com
PRG 420 Redefined Education--prg420.com
 
PRG 420 Education Fabulous--prg420.com
PRG 420 Education Fabulous--prg420.comPRG 420 Education Fabulous--prg420.com
PRG 420 Education Fabulous--prg420.com
 
PRG 420 Introduction Education--prg420.com
PRG 420 Introduction Education--prg420.comPRG 420 Introduction Education--prg420.com
PRG 420 Introduction Education--prg420.com
 
PRG 420 NERD Achievement Education--prg420nerd.com
PRG 420 NERD Achievement Education--prg420nerd.comPRG 420 NERD Achievement Education--prg420nerd.com
PRG 420 NERD Achievement Education--prg420nerd.com
 
POS 408 Creative and Effective/newtonhelp.com
POS 408 Creative and Effective/newtonhelp.comPOS 408 Creative and Effective/newtonhelp.com
POS 408 Creative and Effective/newtonhelp.com
 
POS 408 Extraordinary Life/newtonhelp.com 
POS 408 Extraordinary Life/newtonhelp.com POS 408 Extraordinary Life/newtonhelp.com 
POS 408 Extraordinary Life/newtonhelp.com 
 
POS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.comPOS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.com
 
PRG 421 Entire Course
PRG 421 Entire CoursePRG 421 Entire Course
PRG 421 Entire Course
 
PRG 421 Entire Course NEW
PRG 421 Entire Course NEWPRG 421 Entire Course NEW
PRG 421 Entire Course NEW
 
CMGT 410 HOMEWORK Education Planning--cmgt410homework.com
CMGT 410 HOMEWORK Education Planning--cmgt410homework.comCMGT 410 HOMEWORK Education Planning--cmgt410homework.com
CMGT 410 HOMEWORK Education Planning--cmgt410homework.com
 
CIS 498 Focus Dreams/newtonhelp.com
CIS 498 Focus Dreams/newtonhelp.comCIS 498 Focus Dreams/newtonhelp.com
CIS 498 Focus Dreams/newtonhelp.com
 
MGT 402 help Successful Learning/Snaptutorial
MGT 402 help Successful Learning/SnaptutorialMGT 402 help Successful Learning/Snaptutorial
MGT 402 help Successful Learning/Snaptutorial
 
MGT 402 help A Guide to career/Snaptutorial
MGT 402 help A Guide to career/SnaptutorialMGT 402 help A Guide to career/Snaptutorial
MGT 402 help A Guide to career/Snaptutorial
 
PRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.comPRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.com
 
PRG 420 Inspiring Innovation--prg420.com
PRG 420 Inspiring Innovation--prg420.comPRG 420 Inspiring Innovation--prg420.com
PRG 420 Inspiring Innovation--prg420.com
 
CIS 518 STUDY Achievement Education--cis518study.com
CIS 518 STUDY Achievement Education--cis518study.comCIS 518 STUDY Achievement Education--cis518study.com
CIS 518 STUDY Achievement Education--cis518study.com
 
CIS 518 STUDY Become Exceptional--cis518study.com
CIS 518 STUDY Become Exceptional--cis518study.comCIS 518 STUDY Become Exceptional--cis518study.com
CIS 518 STUDY Become Exceptional--cis518study.com
 

Kürzlich hochgeladen

Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Pooja Bhuva
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 

Kürzlich hochgeladen (20)

Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 

PRG 211 CART Education Fabulous--prg211cart.com

  • 1. PRG 211 All Assignments FOR MORE CLASSES VISIT www.prg211cart.com PRG 211 Week 1 Individual University Project Problem Solving with Algorithms PRG 211 Week 2 Individual Tip, Tax, and Total PRG 211 Week 2 Individual University Project Using Selection and Iteration I PRG 211 Week 3 Individual Yum Yum Burger Joint PRG 211 Week 3 Individual University Project Using Selection and Iteration II PRG 211 Week 4 Individual Lab 9-5 Going Green PRG 211 Week 4 Individual University Project Using Arrays PRG 211 Week 5 Individual University Project Using Files ============================================== PRG 211 Week 1 Individual University Project Problem Solving with Algorithms
  • 2. FOR MORE CLASSES VISIT www.prg211cart.com PRG 211 Week 1 Individual University Project Problem Solving with Algorithms During this course you will design a program for a state university. The university needs a website design that will enable students to order books online. Each week you will receive additional instructions for the elements of the design based on the needs of the university. The elements will correspond with the concepts and skills you learn that week. According to the university’s website design request, students need to order five books, one for each of the five required courses that all students take. You need to design a program that will prompt students for the price of each book and display the total cost for the five books. Create a 1- to 1 3/4-page document listing the steps needed to solve the problem using an algorithm, including the following:  Identify the input needed  Define what the input must do (i.e., the process)  Show what the output must produce Create a 1/2- to 1-page document of your pseudocode based on the algorithm, including the following:  Write the pseudocode statement(s) forthe input  Write the pseudocode statement(s) for the process  Write the pseudocode statement(s) for the output
  • 3. Create a 1-page flowchart based on the algorithm, including the following:  Mark the program’s starting point  Represent the input steps in the program  Represent the process steps in the program  Represent the output steps in the program  Mark the program’s ending point Submit your assignment using the Assignment Files tab. ============================================== PRG 211 Week 2 Individual Tip, Tax, and Total FOR MORE CLASSES VISIT www.prg211cart.com PRG 211 Week 2 Individual Tip, Tax, and Total Complete the Lab 4-6, ―Programming Challenge 1 – Tip, Tax, and Total,‖ of Starting Out with Programming Logic and Design. Note: You are only required to create the pseudocode for this activity; however, notice how the pseudocode compares to the given Python code for this assignment. Submit your assignment using the Assignment Files tab.
  • 4. ============================================== PRG 211 Week 2 Individual University Project Using Selection and Iteration I FOR MORE CLASSES VISIT www.prg211cart.com PRG 211 Week 2 Individual University Project: Using Selection and Iteration I The university reassessed its needs for the website design and determined it will no longer require all students to take five classes. Update the website program to reflect the following changes:  Prompt the student for the number of courses being taken  Use a while loop to prompt the student for the price of each book based upon the number of classes being taken  After the price of each book has been entered, prompt the user for shipping options: delivery or pick-up  Use an if statement to add the charges to the total price if the shipping charges are greater than 0
  • 5.  Display the total cost Create a 1/2- to 1-page document containing pseudocode based on the revised program needs. Add this to the revised program pseudocode from the Week One Individual Assignment, Problem Solving with Algorithms. Create a 1-page flowchart based on the algorithm for the revised program needs. Add this to the revised program flowchart from the Week One Individual Assignment, Problem Solving with Algorithms. Submit your assignment using the Assignment Files tab. ============================================== PRG 211 Week 3 Individual University Project Using Selection and Iteration II FOR MORE CLASSES VISIT www.prg211cart.com PRG 211 Week 3 Individual: University Project: Using Selection and Iteration II The university would like to remind students to pick-up their books at the bookstore if they choose not to have books delivered. Revise the website program to reflect the following changes:  Prompt the student for the number of courses being taken
  • 6.  Use a for loop to prompt the student for the price of each book based upon the number of classes being taken  After the price of each book has been entered, display the total price of the books  Prompt the user for the following shipping options: delivery or pick- up  Use an if-then-else statement to add the charges to the total price if the shipping charges are greater than 0  If there are shipping charges, display the total charges and shipping date  If there are no shipping charges, display the total charges and a message indicating that the books can be picked up at the bookstore Create a 1/2- to 1-page document containing pseudocode based on the revised program needs. Create a 1-page flowchart based on the algorithm for the revised program needs. Submit your assignment using the Assignment Files tab. ============================================== PRG 211 Week 3 Individual Yum Yum Burger Joint FOR MORE CLASSES VISIT www.prg211cart.com
  • 7. PRG 211 Week 3 Individual Yum Yum Burger Joint Complete the Lab 5-5, ―Programming Challenge 1 – Yum Yum Burger Joint,‖ of Starting Out with Programming Logic and Design . Note: You are only required to create the flowchart for this activity; however, notice how the pseudocode compares to the given Python code for this assignment. Submit your assignment using the Assignment Files tab. ============================================== PRG 211 Week 4 Individual Lab 9-5 Going Green FOR MORE CLASSES VISIT www.prg211cart.com PRG 211 Week 4 Individual Going Green Complete the Lab 9-5, ―Programming Challenge 1 — Going Green,‖ of Starting Out with Programming Logic and Design. Note: You are only required to create the flowchart for this activity; however, notice how the pseudocode compares to the given Python code for this assignment. Submit your assignment using the Assignment Files tab. ==============================================
  • 8. PRG 211 Week 4 Individual University Project Using Arrays FOR MORE CLASSES VISIT www.prg211cart.com PRG 211 Week 4 Individual: University Project: Using Arrays The university updated its website program design request with a few more features to fit its needs. Update the website program to reflect the following changes:  Use an array to prompt the user to entera credit card account number  Use the sequential search algorithm to locate the credit card number entered by the user  If the credit card number is not in the array, display a message indicating the number is invalid  If the credit card number is in the array, display a message indicating the credit card number is valid Create a 1/2- to 1-page document containing pseudocode based on the revised program needs. Add the pseudocode statements to the existing pseudocode program. Create a 1- to 2-page flowchart based on the algorithm for the revised program needs. Add the flowchart structure in the existing flowchart for the program. Submit your assignment using the Assignment Files tab.
  • 9. ============================================== PRG 211 Week 5 Individual University Project Using Files FOR MORE CLASSES VISIT www.prg211cart.com PRG 211 Week 5 Individual University Project: Using Files For completion of the program, use arrays and files. Instead of prompting the user for the prices of the book, update the website program to reflect the following changes:  Read the prices into an array from afile using a loop  Use a second loop to sum the values stored in the array after the prices of all the books have been read  Write the content of the array to a second file Create a 1/2- to 1-page document containing pseudocode based on the revised program needs. Replace the pseudocode statements in the existing pseudocode program. Create a 1- to 2-page flowchart based on the algorithm for the revised program needs. Replace the flowchart structure in the existing flowchart for the program. Submit your assignment using the Assignment Files tab. ==============================================