
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
thumb_up100%

Transcribed Image Text:What is the output of the following Python code:
def testing (num):
if (num > 50):
return (num - 2)
return testing(testing( num + 10));
print(testing(30))
а) 50
b) 52
c) 48
d) Infinite recursion
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps

Knowledge Booster
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
- The solution can be handwritten b) Trace the following recursive method for the function call “isPalindrome(rotator)” and show the output result.arrow_forwardWrite a recursive Python function named pgcd, to find and return the Greatest Common Divisor (GCD) of two numbers x and y passed in parameters. • Test it gcd (1234,4321) gcd (8192,192)arrow_forwardpython the code to be done is already pointed outarrow_forward
- The Eight Queen Problem is to find a solution to place a queen in each row on a chessboard such that no queens can attack each other. write a program to solve the eight queen problem using the recursion and display the result. Program in javaarrow_forwardWrite python code to complete factorial_str()'s recursive case.Sample output with input: 55! = 5 * 4 * 3 * 2 * 1 = 120 def factorial_str(fact_counter, fact_value):output_string = '' if fact_counter == 0: # Base case: 0! = 1output_string += '1'elif fact_counter == 1: # Base case: print 1 and resultoutput_string += str(fact_counter) + ' = ' + str(fact_value)else: # Recursive caseoutput_string += str(fact_counter) + ' * 'next_counter = fact_counter - 1next_value = next_counter * fact_valueoutput_string += '''Need help here to get the proper output''' return output_string user_val = int(input())print('{}! = '.format(user_val), end="")print(factorial_str(user_val, user_val))arrow_forward1. Consider the following recursive function: def foo(n): if (n == 0): return 0 return n + foo(n - 1)a. What is foo(5) b. What is foo(10) c. Suppose that n + foo(n - 1) is changed to n * foo(n - 1). What is foo(5) now? d. What happens if foo(-1) is called?arrow_forward
- hi,it is wrong agai n fib(n) 2 1 2 1 2 1 2 1 2 1Number of recursive calls: 5 but have to:arrow_forwardwrite java codes to do the following: Write a recursive function to check if an integer array is negative symmetric, for example, an array of 10, 20, 30, 90, -30, -20, -10 is considered as negative symmetric, while an array of 10, 20, 30, 90, 30, 20, 10 is not considered as negative symmetric. public static boolean checkArraySym(int [ ] A, int first, int last) that receives an array A, first index, last index and checks if the array is negative symmetricarrow_forward1.)I have to recursive with python language and was asked to do a buy 2 get 1 free where you have some amount of money(x) each item costs a given amount(y), for each 2 item you get 1 free, builda recursive solution to find out how many items you can buy for x amount of money. 2.) Buy M, get N free Then alter your first answer to allow for the user to enter any M and N for how many you need to buy to get free itemsarrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education