Create a PowerPoint that contains a FLOWCHART and a PSEUDOCODE
for each problem (You may use a different application if PowerPoint
is not available).
Use the information below to create a pseudocode (which can be a
text-based description for solving the problems) and a flowchart
(using flowchart symbols to illustrate how you would program) to
solve each problem. Use Microsoft PowerPoint® for
Pseudocode and the flowchart (You may use a different
application if PowerPoint is not available)..
Just for clarity, write the pseudocodes and the flowchart. Use the Python List to list the months of the year. Write another set of commands to print the list using pseudocodes and flowchart ONLY. You will NOT write the actual codes.
months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October',
'November', 'December']
for i in range(len(months)):
print('{0:>2} : {1}'.format(i + 1, months[i]))

Create a PowerPoint that contains a FLOWCHART and a PSEUDOCODE for each problem (You may use...
Create an algorithm design (you may use a flowchart and/or pseudocode) AND the Python program to determine the winning team for Virginia Tech's Bowling League. There are 8 members per team and 12 teams in the league. Each bowler needs their score (between 0 and 300) to be entered. The winning team is found by determining the highest average score. Output the team’s name and average that wins the competition.
Create a 14- to 16-slide Microsoft® PowerPoint® presentation, including Introduction, Conclusion, and Reference slides, that contains the following: An accurate description of the "building blocks" of today's data communication networks, such as switches, routers, and cabling. Provide examples from your network diagram of each building block. A concise strategy to ensure the availability of network access in switched and routed networks. Provide illustrations from your improvements to the original campus networks. An explanation of how firewalls mitigate some network attack...
Problem 1: regarding Binary numbers, create an algorithm (flowchart ) that reads a 4-bit binary number from the keyboard as a string and then converts it into a decimal number. For example, if the input is 1100, the output should be 12. (Hint: Break the string into substrings and then convert each substring to a value for a single bit. If the bits are b0, b1, b2, and b3, the decimal equivalent is 8b0+ 4b1+ 2b2+ b3.) Problem 2: Suppose...
Write the Flowchart for the following programming problem based on the pseudocode below. Last year, a local college implemented rooftop gardens as a way to promote energy efficiency and save money. Write a program that will allow the user to enter the energy bills from January to December for the year prior to going green. Next, allow the user to enter the energy bills from January to December of the past year after going green. The program should calculate the...
Write a python program where you create a list (you an create it in code you do not have to use input() statements) that represents the total rainfall for each of 12 months (assume that element 0 is January and element 11 is December). The program should calculate and display the: 1) total rainfall for the year; 2) the average monthly rainfall; 3) the months with the highest and lowest amounts. You need to figure out how to access each...
Write a shell script to solve the following business problem. Create a file called whoislogin.out that contains the output of the who command, then append to the whois.out file, the output of the date and finger commands. Your script should prompt to pick any users from the list of users currently logged onto the system. Use the variable concept to search for the specific user from those displayed on the screen coming from the who is.out file created. Show a...
Create an Inheritance hierarchy that a bank may use to represent customer's bank accounts (Checking and Savings), this includes a GUI user interface that allows user to login, and deposit or withdraw, and application to display the transaction and final balance. All the bank customers can: - Create a new account - Deposit (Credit) money into their account and/or withdraw (debit) money from their account. - Application should expect user to login to their account using login/password Create necessary classes...
When breaking a problem down, you often encounter elements that you want to use repeatedly in your code. Sometimes it's appropriate to write a new function; at other times it's appropriate to write a loop. What do you think? What kinds of circumstances would lead you to writing a function versus using a loop? What is the error in the pseudocode below? Re-write the pseudocode in your answer document. Declare Boolean finished = False Declare Integer value, cube While NOT...
Create and Analyze a Process Flowchart
A flowchart is a graphic representation of how a process works.
For performance improvement purposes, a flowchart helps people
clarify how things are currently working and how they could be
improved. In this project you'll create a flow chart for a work
process and identify opportunities for improving the efficiency of
the process.
Hint: Look at each step in the process and ask yourself these
questions:
Does the step wasted time?
Does the step...
In the python: Note 1: You may not use these python built-in functions: sorted(), min(), max(), sum(), pow(), zip(), map(), append(), count() and counter(). For questions 1, 2 and 4: Ask the user to enter the size of a list. Fill the list with random numbers 0-9 and print the list. 1- (8 points) luckyNumbers.py: Find the sum of the numbers in a list, except the number 7 is considered unlucky, so we ignore it and do not include 7's...