213k views
2 votes
13. Which of the following instruction will make the helloLabel visible?

[A] helloLabel. Show = True
[B] helloLabel. Show = False
[C] helloLabel.Visible = False
[D] helloLabel.Visible = True
[E] helloLabel.Appear = True

1 Answer

2 votes

Final answer:

The correct instruction to make the helloLabel visible is helloLabel.Visible = True.


Step-by-step explanation:

The correct instruction to make the helloLabel visible is helloLabel.Visible = True. This will change the visibility property of the helloLabel to be true, therefore making it visible. The other options given do not have the correct syntax or do not represent the correct property.


Learn more about Visibility of GUI elements

User Johnwards
by
8.6k points