DSC PGPBSBA
University Of Texas - Arlington
Here are the best resources to pass DSC PGPBSBA. Find DSC PGPBSBA study guides, notes, assignments, and much more.
1 results
Exam (elaborations)
Practice Quiz 1.5 - Functions Python - Foundations - Great Learning
Practice Quiz 1.5 - Functions_ Python - Foundations - Great Learning 
Course Content 
Practice Quiz 1.5 - Functions 
Type : Practice Quiz 
Attempts : 1/1 
Questions : 10 
Time : 1h 
Your Marks : 8/10 
Instructions 
Attempt History 
Attempt #1 
Nov 29, 2022, 3:55 PM 
Marks: 8 
Q No: 1 Correct Answer 
What will be the output of the following code? 
def mths(a, b): print(a + b) print(a - b) print(a * b) print(a // b) 
mths(9, 5)