How many maximum arguments can be passed to the FlowLayout Constructor?
C
Correct answer
Explanation
This is the correct answer, we can pass minimum 0 arguments and maximum 3 arguments to the FlowLayout constructor. These 3 arguments are :-FlowLayout(int alignment, int horizontalgap, int verticalgap)Alignment:- it can be FlowLayout.LEFT, FlowLayout.RIGHT or FlowLayout.CENTERHorizontalgap : - it specifies the horizontal gap between the components.Verticalgap : - It specifies the vertical gap between the components.So this answer is correct.