Assume a function called my_func() is defined in a module called abc. Which of the following examples correctly show how to import and use the my_func() function?
 1) from abc import my_func
 my_func()
 2) import abc
 my_func()
 3) import abc
 abc.my_func()
 4) import abc.my_func
 my_func()