0 votes
in Python by
What is the output of the following code?

def f(x):

    return 3*x

def g(x):

    return 4*x

print(f(g(2)))

i) Error

ii) 8

iii) 24  

iv) 6

1 Answer

0 votes
by
iii) 24

Related questions

0 votes
asked Sep 4, 2021 in Python by SakshiSharma
0 votes
asked Jan 18, 2021 in Python by SakshiSharma
...