O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
total_debt = float(input("Enter total debt : ")) total_assets = float(input("Enter total assets : ")) ratio = total_debt / total_assets if ratio > 1 : print("the major portion of the debt is funded by assets ") else : print("greater portion of assets is funded by equity ")
▶ Run Code
🖥 Output: