SlideShare a Scribd company logo
1 of 12
PRG 211 All Assignments
For more classes visit
www.snaptutorial.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.snaptutorial.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 additionalinstructions 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) for the 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.snaptutorial.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.snaptutorial.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.snaptutorial.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.snaptutorial.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.snaptutorial.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.snaptutorial.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 enter a 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.snaptutorial.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 a file 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.
************************************************

More Related Content

Similar to Prg 211 Effective Communication / snaptutorial.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 Enhance teaching / snaptutorial.com
Prg 420 Enhance teaching / snaptutorial.comPrg 420 Enhance teaching / snaptutorial.com
Prg 420 Enhance teaching / snaptutorial.comBaileya28
 
CIS 554 Education Specialist / snaptutorial.com
 CIS 554 Education Specialist / snaptutorial.com CIS 554 Education Specialist / snaptutorial.com
CIS 554 Education Specialist / snaptutorial.comstevesonz129
 
PRG 421 Entire Course
PRG 421 Entire CoursePRG 421 Entire Course
PRG 421 Entire CourseDR Dean Jame
 
Cis 554 Enhance teaching / snaptutorial.com
Cis 554 Enhance teaching / snaptutorial.comCis 554 Enhance teaching / snaptutorial.com
Cis 554 Enhance teaching / snaptutorial.comStokesCope170
 
CIS 554 Education Redefined / snaptutorial.com
CIS 554  Education Redefined / snaptutorial.comCIS 554  Education Redefined / snaptutorial.com
CIS 554 Education Redefined / snaptutorial.comMcdonaldRyan203
 
PRG 420 Massive success / tutorialrank.com
PRG 420 Massive success / tutorialrank.comPRG 420 Massive success / tutorialrank.com
PRG 420 Massive success / tutorialrank.comBromleyz1
 
PRG/215 ENTIRE CLASS UOP TUTORIALS
PRG/215 ENTIRE CLASS UOP TUTORIALSPRG/215 ENTIRE CLASS UOP TUTORIALS
PRG/215 ENTIRE CLASS UOP TUTORIALSSharon Reynolds
 
PRG 420 NERD Redefined Education--prg420nerd.com
PRG 420 NERD Redefined Education--prg420nerd.comPRG 420 NERD Redefined Education--prg420nerd.com
PRG 420 NERD Redefined Education--prg420nerd.comclaric213
 
PRG 420 Achievement Education--prg420.com
 PRG 420 Achievement Education--prg420.com PRG 420 Achievement Education--prg420.com
PRG 420 Achievement Education--prg420.comannebronte97
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comULLPTT
 
Cis 498 Inspiring Innovation--tutorialrank.com
Cis 498  Inspiring Innovation--tutorialrank.comCis 498  Inspiring Innovation--tutorialrank.com
Cis 498 Inspiring Innovation--tutorialrank.comPrescottLunt371
 
Cis 510 Enhance teaching / snaptutorial.com
Cis 510  Enhance teaching / snaptutorial.comCis 510  Enhance teaching / snaptutorial.com
Cis 510 Enhance teaching / snaptutorial.comHarrisGeorg52
 
Pos 408 Social Responsibility - tutorialrank.com
Pos 408  Social Responsibility - tutorialrank.comPos 408  Social Responsibility - tutorialrank.com
Pos 408 Social Responsibility - tutorialrank.comPrescottLunt1008
 
Cis 210 Success Begins / snaptutorial.com
Cis 210 Success Begins / snaptutorial.comCis 210 Success Begins / snaptutorial.com
Cis 210 Success Begins / snaptutorial.comRobinson066
 
Cis 210 Enthusiastic Study / snaptutorial.com
Cis 210 Enthusiastic Study / snaptutorial.comCis 210 Enthusiastic Study / snaptutorial.com
Cis 210 Enthusiastic Study / snaptutorial.comGeorgeDixon96
 
Cis 498 Extraordinary Success/newtonhelp.com
Cis 498 Extraordinary Success/newtonhelp.com  Cis 498 Extraordinary Success/newtonhelp.com
Cis 498 Extraordinary Success/newtonhelp.com amaranthbeg149
 

Similar to Prg 211 Effective Communication / snaptutorial.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 Enhance teaching / snaptutorial.com
Prg 420 Enhance teaching / snaptutorial.comPrg 420 Enhance teaching / snaptutorial.com
Prg 420 Enhance teaching / snaptutorial.com
 
CIS 554 Education Specialist / snaptutorial.com
 CIS 554 Education Specialist / snaptutorial.com CIS 554 Education Specialist / snaptutorial.com
CIS 554 Education Specialist / snaptutorial.com
 
PRG 421 Entire Course NEW
PRG 421 Entire Course NEWPRG 421 Entire Course NEW
PRG 421 Entire Course NEW
 
PRG 421 Entire Course
PRG 421 Entire CoursePRG 421 Entire Course
PRG 421 Entire Course
 
Cis 554 Enhance teaching / snaptutorial.com
Cis 554 Enhance teaching / snaptutorial.comCis 554 Enhance teaching / snaptutorial.com
Cis 554 Enhance teaching / snaptutorial.com
 
CIS 554 Education Redefined / snaptutorial.com
CIS 554  Education Redefined / snaptutorial.comCIS 554  Education Redefined / snaptutorial.com
CIS 554 Education Redefined / snaptutorial.com
 
PRG 420 Massive success / tutorialrank.com
PRG 420 Massive success / tutorialrank.comPRG 420 Massive success / tutorialrank.com
PRG 420 Massive success / tutorialrank.com
 
PRG/215 ENTIRE CLASS UOP TUTORIALS
PRG/215 ENTIRE CLASS UOP TUTORIALSPRG/215 ENTIRE CLASS UOP TUTORIALS
PRG/215 ENTIRE CLASS UOP TUTORIALS
 
PRG 420 NERD Redefined Education--prg420nerd.com
PRG 420 NERD Redefined Education--prg420nerd.comPRG 420 NERD Redefined Education--prg420nerd.com
PRG 420 NERD Redefined Education--prg420nerd.com
 
PRG 420 Achievement Education--prg420.com
 PRG 420 Achievement Education--prg420.com PRG 420 Achievement Education--prg420.com
PRG 420 Achievement Education--prg420.com
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
 
Cis 498 Inspiring Innovation--tutorialrank.com
Cis 498  Inspiring Innovation--tutorialrank.comCis 498  Inspiring Innovation--tutorialrank.com
Cis 498 Inspiring Innovation--tutorialrank.com
 
Cis 510 Enhance teaching / snaptutorial.com
Cis 510  Enhance teaching / snaptutorial.comCis 510  Enhance teaching / snaptutorial.com
Cis 510 Enhance teaching / snaptutorial.com
 
Pos 408 Social Responsibility - tutorialrank.com
Pos 408  Social Responsibility - tutorialrank.comPos 408  Social Responsibility - tutorialrank.com
Pos 408 Social Responsibility - tutorialrank.com
 
Cis 210 Success Begins / snaptutorial.com
Cis 210 Success Begins / snaptutorial.comCis 210 Success Begins / snaptutorial.com
Cis 210 Success Begins / snaptutorial.com
 
Cis 210 Enthusiastic Study / snaptutorial.com
Cis 210 Enthusiastic Study / snaptutorial.comCis 210 Enthusiastic Study / snaptutorial.com
Cis 210 Enthusiastic Study / snaptutorial.com
 
PRG 420 Entire Course NEW
PRG 420 Entire Course NEWPRG 420 Entire Course NEW
PRG 420 Entire Course NEW
 
Cis 498 Extraordinary Success/newtonhelp.com
Cis 498 Extraordinary Success/newtonhelp.com  Cis 498 Extraordinary Success/newtonhelp.com
Cis 498 Extraordinary Success/newtonhelp.com
 

Recently uploaded

Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
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
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
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
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
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
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
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
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxdhanalakshmis0310
 
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
 

Recently uploaded (20)

Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
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
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
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Ữ Â...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
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
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
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)
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
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
 

Prg 211 Effective Communication / snaptutorial.com

  • 1. PRG 211 All Assignments For more classes visit www.snaptutorial.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
  • 2. 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.snaptutorial.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 additionalinstructions 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.
  • 3. 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) for the 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.
  • 4. ************************************************ PRG 211 Week 2 Individual Tip, Tax, and Total For more classes visit www.snaptutorial.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. ************************************************
  • 5. PRG 211 Week 2 Individual University Project Using Selection and Iteration I For more classes visit www.snaptutorial.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
  • 6.  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.snaptutorial.com
  • 7. 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.
  • 8. ************************************************ PRG 211 Week 3 Individual Yum Yum Burger Joint For more classes visit www.snaptutorial.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.
  • 9. ************************************************ PRG 211 Week 4 Individual Lab 9-5 Going Green For more classes visit www.snaptutorial.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. ************************************************
  • 10. PRG 211 Week 4 Individual University Project Using Arrays For more classes visit www.snaptutorial.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 enter a 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
  • 11. 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.snaptutorial.com PRG 211 Week 5 Individual University Project: Using Files For completion of the program, use arrays and files.
  • 12. 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 a file 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. ************************************************