Multiple choice

The number of parameters passed to the constructor of the Font class in Java is

  1. 4

  2. 3

  3. 2

  4. 1

  5. None of these

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

This is correct choice because the constructor of the Font class takes Three parameters :-First :- first parameter is of String type which specifies the name of the Font.Second :- second parameter is of type int which specifies the style of the font like Font.BOLD.Third :- third parameter is of type int which specifies the size of the font.ExampleFont f1 = new Font(“Serif”, Font.BOLD, 32);So this option is true.