What can you deduce from the line below?

What can you deduce from the line below? (Select two answers)

A. import a.b.c should be placed before that line
B. f () is located in subpackage c of subpackage b of package a
C. the line is incorrect
D. the function being invoked is calleda.b.c.f ()

Download Printable PDF. VALID exam to help you PASS.

6 thoughts on “What can you deduce from the line below?

  1. In my opinion, A and B are the correct onces.
    A is correct because you need to import the function
    B is correct because you have a package which name is A. Then it has a subpackage which is called b, and then you have a module which is called c. Inside c, you have the function.
    C is not correct because you can run those lines.
    D is not correct because the function name is f() and it is not a.b.c.f().

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.