Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Consider again the same function as in Q 1 , but with a changed precondition: def f ( x ) : ' ' ' Pre:

Consider again the same function as in Q1, but with a changed precondition:
def f(x):
''' Pre: x is a natural number greater than 997'''
a = x
y =10
while a >0:
a = a - y
y = y -1
return a * y
Assuming the function terminates, what would be a correct variant that?
Question 2Answer
a.
a-y is a variant
b.
y-1 is a variant
c.
a+y is a variant
d.
None of the above is a variant for this function.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

What are the purposes of promotion ?

Answered: 1 week ago