Differentiate between Built-in functions and user defined functions.

 

Answer:

Built-in functions

User defined functions

They are predefined functions which can be used anytime.

They are functions that are defined by the programmer.

Eg: len( ), type( ), etc

Eg:

def perimeter (b,l):

    p= 2 *(l+b)

    print(p)

 

Ask a doubt
Davneet Singh's photo - Co-founder, Teachoo

Made by

Davneet Singh

Davneet Singh has done his B.Tech from Indian Institute of Technology, Kanpur. He has been teaching from the past 14 years. He provides courses for Maths, Science, Social Science, Physics, Chemistry, Computer Science at Teachoo.