Private Button print = new button();

Options
- creates a button control
- initializes a button control
- instantiates button control
- a and c


CORRECT ANSWER : a and c

Discussion Board
This is wrong

It should be

private Button print = new Button();
NOT
Private Button print = new button();

Notice capital 'P' on 'private' and lower case 'b' on 'Button'

This is wrong. 12-5-2016 12:20 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement