Question (see uploaded pic):  Given Code (Python):  def binary_to_decimal_1(str, n):     #Base Case/s     #Add conditions here for base case/s     if True :         print("I will be printed before this recursive function ends.")         return 0     #Recursive Case/s     #Add conditions here for recursive case/s     else:         return binary_to_decimal_1(str, n) def binary_to_decimal_2(str):     #Base Case/s     #Add conditions here for base case/s     if True :         print("I will be printed before this recursive function ends.")         return 0     #Recursive Case/s     #Add conditions here for recursive case/s     else:         return binary_to_decimal_2(str) #Handle binary string input.    binary_string = input("Please enter a binary string: ") print(binary_string) #Do function calls and print return values.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.1: Function And Parameter Declarations
Problem 11E
icon
Related questions
Question
100%

Question (see uploaded pic): 

Given Code (Python): 

def binary_to_decimal_1(str, n):
    #Base Case/s
    #Add conditions here for base case/s
    if True :
        print("I will be printed before this recursive function ends.")
        return 0

    #Recursive Case/s
    #Add conditions here for recursive case/s
    else:
        return binary_to_decimal_1(str, n)

def binary_to_decimal_2(str):
    #Base Case/s
    #Add conditions here for base case/s
    if True :
        print("I will be printed before this recursive function ends.")
        return 0

    #Recursive Case/s
    #Add conditions here for recursive case/s
    else:
        return binary_to_decimal_2(str)

#Handle binary string input.
  
binary_string = input("Please enter a binary string: ")
print(binary_string)

#Do function calls and print return values.

1 v def binary_to_decimal_1(str, n):
2
#Base Case/s
#Add conditions here for base case/s
if True :
print("I will be printed before this recursive function ends.")
3
The code is already given
Problem: Using PYTHON, create a code that asks you to enter a binary string and you must use this binary string as
an input to your functions. These functions will be recursive functions that return the decimal number equivalent of your
binary string input.
return 0
7
#Recursive Case/s
Implementation 1: A recursive function with two inputs: a binary string, and a number. You can think of this as the index
that allows you to access each element in your sequence.
9.
#Add conditions here for recursive case/s
10
else:
11
return binary_to_decimal_1(str, n)
12
Implementation 2: A recursive function with only one input: the binary string.
13
def binary_to_decimal_2(str):
#Base Case/s
Constraints: Do implementation 1 if the binary string starts with a '0'. Otherwise, do implementation 2 if the binary string
starts with '1'. Before you return a value in your recursive function's base case, print a statement that reveals the identity
of the function that is currently used.
14
15
#Add conditions here for base case/s
if True :
16
17
print("I will be printed before this recursive function ends.")
18
return 0
19
Example (Input):
Example (Input #2):
20
#Recursive Case/s
#Add conditions here for recursive case/s
1111
0000
21
22
else:
23
return binary_to_decimal_2(str)
Example (Output):
Example (Output #2):
24
Please enter a binary string: 1111
Calculating the decimal number equivalent using implementation 2.
The decimal number equivalent of 1111 is 15.
Please enter a binary string: 0000
Calculating the decimal number equivalent using implementation 1.
The decimal number equivalent of 0000 is 0.
25
#Handle binary string input.
26
binary_string = input("Please enter a binary string: ")
print(binary_string)
27
28
29
30
#Do function calls and print return values.
Transcribed Image Text:1 v def binary_to_decimal_1(str, n): 2 #Base Case/s #Add conditions here for base case/s if True : print("I will be printed before this recursive function ends.") 3 The code is already given Problem: Using PYTHON, create a code that asks you to enter a binary string and you must use this binary string as an input to your functions. These functions will be recursive functions that return the decimal number equivalent of your binary string input. return 0 7 #Recursive Case/s Implementation 1: A recursive function with two inputs: a binary string, and a number. You can think of this as the index that allows you to access each element in your sequence. 9. #Add conditions here for recursive case/s 10 else: 11 return binary_to_decimal_1(str, n) 12 Implementation 2: A recursive function with only one input: the binary string. 13 def binary_to_decimal_2(str): #Base Case/s Constraints: Do implementation 1 if the binary string starts with a '0'. Otherwise, do implementation 2 if the binary string starts with '1'. Before you return a value in your recursive function's base case, print a statement that reveals the identity of the function that is currently used. 14 15 #Add conditions here for base case/s if True : 16 17 print("I will be printed before this recursive function ends.") 18 return 0 19 Example (Input): Example (Input #2): 20 #Recursive Case/s #Add conditions here for recursive case/s 1111 0000 21 22 else: 23 return binary_to_decimal_2(str) Example (Output): Example (Output #2): 24 Please enter a binary string: 1111 Calculating the decimal number equivalent using implementation 2. The decimal number equivalent of 1111 is 15. Please enter a binary string: 0000 Calculating the decimal number equivalent using implementation 1. The decimal number equivalent of 0000 is 0. 25 #Handle binary string input. 26 binary_string = input("Please enter a binary string: ") print(binary_string) 27 28 29 30 #Do function calls and print return values.
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Declaring and Defining the Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning