CS 1101-01 Programming Fundamentals

Learning Goal: I’m working on a programming multi-part question and need the explanation and answer to help me learn.

INTRODUCTION

Welcome to unit 3!

Conditional statement flowchart showing the flow of If, then, else.
Unit 3 provides an overview of the Conditionals and Recursion, which are the prime requirements for the decision control process in a program. You’ll learn how to use if statements and recursive functions to create conditional execution problems. You will also learn about some essential recursion-related topics, such as boolean expressions, stack diagrams, keyboard input, and the integer operators for floor division (//) and modulus (%).

The reading for Unit 3 provides an exhaustive analysis concentrating on the following:

  • chained versus nested conditionals
  • recursion
  • simplification of nested conditionals using boolean expressions.

Your programming skills will develop to the next level once you write recursive Python programs.


REFERENCE

“Boolean Operators Spock” by mwscheung is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/?ref=openverse.

READING ASSIGNMENT

Reading Assignments are designed to expand your knowledge of the topics introduced in the Overview and provide the knowledge you will need to successfully complete the assignments in this unit. As you read through the learning resource and watch the videos consider the following:

  • What is recursion?
  • When should we use recursion, and when should we avoid it?
  • How can we avoid infinite recursion?
  • What is the difference between chained and nested conditionals?


READ

  1. Think Python: How to think like a computer scientist

WATCH: PYTHON BEGINNER TUTORIAL 5 – BOOLEANS AND CONDITIONALS

https://my.uopeople.edu/filter/kaltura/lti_launch.php?courseid=7239&height=308&width=400&withblocks=0&source=http%3A%2F%2F1934481.kaf.kaltura.com%2Fbrowseandembed%2Findex%2Fmedia%2Fentryid%2F1_tzri430s%2FshowDescription%2Ffalse%2FshowTitle%2Ffalse%2FshowTags%2Ffalse%2FshowDuration%2Ffalse%2FshowOwner%2Ffalse%2FshowUploadDate%2Ffalse%2FplayerSize%2F400x308%2FplayerSkin%2F45150521%2F

SUPPLEMENTAL READING

The supplemental reading assignment is not required reading but provides additional context and background for the topic and students are encouraged to review these assignments.

  1. Think Python: How to think like a computer scientist.

REFERENCES

Downey, A. (2015). Think Python: How to think like a computer scientist. Green Tea Press. https://greenteapress.com/thinkpython2/thinkpython2.pdf

kjdElectronics. (2017, June 9). Python beginner tutorial 5 – Booleans and conditionals [Video]. YouTube. https://youtu.be/E4wbrwDpnIg

DISCUSSION ASSIGNMENT

Welcome to Unit 3 Discussion Forum.

Describe the difference between a chained conditional and a nested conditional. Give your own example of each. Do not copy examples from the textbook.


Deeply nested conditionals can become difficult to read. Describe a strategy for avoiding nested conditionals. Give your own example of a nested conditional that can be modified to become a single conditional and show the equivalent single conditional. Do not copy the example from the textbook.

The code and its output must be explained technically whenever asked. The explanation can be provided before or after the code, or in the form of code comments within the code. For any descriptive type of question. Your answer must be at least 150 words.

End your discussion post with one question related to programming fundamentals learned in this unit from which your colleagues can formulate a response or generate further discussion. Remember to post your initial response as early as possible, preferably by Sunday evening, to allow time for you and your classmates to have a discussion.

Your instructor will grade this assignment using this rubric.

PROGRAMMING ASSIGNMENTS


ASSIGNMENT INSTRUCTIONS:


In this unit, we explored the overview of the Conditionals and Recursion, which are the prime requirements for the decision control process in a program. Before completing this assignment, review the reading material below:

Q 1. The following is the countdown function copied from Section 5.8 of your textbook.

def countdown(n):
if n <= 0:
print(‘Blastoff!’)
else:
print(n)
countdown(n-1)

Write a new recursive function countup that expects a negative argument and counts “up” from that number. Output from running the function should look something like this:

>>> countup(-3)
-3
-2
-1
Blastoff!

Write a Python program that gets a number using keyboard input. (Remember to use input for Python 3 but raw_inputfor Python 2.)

If the number is positive, the program should call countdown. If the number is negative, the program should call countup. Choose for yourself which function to call (countdown or countup) for input of zero.

Provide the following.

  • The code of your program.
  • Respective output for the following inputs: a positive number, a negative number, and zero.
  • An explanation of your choice for what to call for input of zero.

    Q 2: You are developing a program that performs a division operation on two numbers provided by the user. However, there is a situation where a runtime error can occur due to a division by zero. To help junior developers learn about error handling in expressions and conditions, you want to create a program deliberately containing this error and guide them in diagnosing and fixing it.

INSTRUCTIONS:


  • Create a Python program that prompts the user to enter two numbers.
  • Implement a division operation on the entered numbers.
  • Introduce a condition that raises a runtime error if the second number is zero.
  • Provide an error message that clearly indicates the cause of the error.
  • Guide the junior developers in identifying the error message and implementing error handling techniques to handle the division by zero scenario.

QUESTIONS:


  • Provide a code demonstrating how to handle the division by zero error.
  • Output demonstrating the runtime error, including the error message.
  • Explain the significance of error handling in expressions or conditions, using the division by zero scenario as an example. Discuss the potential impact of not handling this error in a program.
  • Please provide detailed explanations and code snippets to guide the junior developers in understanding and addressing the division by zero error in Python programs.

SUBMISSION INSTRUCTIONS:


  • Submit the solutions to both questions in one document.
  • The code and its output must be explained technically. The explanation can be provided before or after the code. The descriptive part of your response must be at least 200 words.
  • Make sure your submission is double-spaced, using Times New Roman, 12-point font, with 1” margins.
  • Use sources to support your arguments. Use high-quality, credible, relevant sources to develop ideas that are appropriate for the discipline and genre of the writing.
  • Use APA citations and references to support your work. Add a reference list at the end of the submission. For assistance with APA formatting, view Learning Resource Center: Academic Writing.
  • Your submission should be clearly written, concise, and well organized, and free of spelling and grammar errors. The grading will be based on the quality of your analysis, accurate solution of the problem and the quality of your writing.

Reference

Downey, A. (2015). Think Python: How to think like a computer scientist. Green Tree Press

This assignment will be assessed by your instructor using the rubric available on the assignment page located on the course homepage.

Requirements: Please find the appropriate solution, If you are using references, please use the proper citation rules   |   .doc file

Click here to order similar paper @Udessaywriters.com.100% Original.Written from scratch by professional writers.

You May Also Like

About the Author: admin