Page 1 of 1

The application is not returning data back to the user and is causing a 100% memory utilization when ran. What code corr

Posted: Fri Jul 01, 2022 5:42 am
by answerhappygod
The application is not returning data back to the user and iscausing a 100% memory utilization when ran. What code correctionwill resolve this?
The Application Is Not Returning Data Back To The User And Is Causing A 100 Memory Utilization When Ran What Code Corr 1
The Application Is Not Returning Data Back To The User And Is Causing A 100 Memory Utilization When Ran What Code Corr 1 (6.72 KiB) Viewed 39 times
a) Set a break statement within the loop to meet a returncondition
b) Increment the loop with the x = x-1 to meet a returncondition
c) Run strace on the python program and determine the issue
d) Increment the loop with the x = x+1 to meet a returncondition
#!/usr/bin/env python3 input('enter a number: ยน) y = int(x) + 1 def myfunction(x): while float(x) <=100: float(x) * 0 y = int(x) 1 print('hello student') return x myfunction(x)