Answer is C.
To test:
public class App {
String greet = "Welcome!";
public App() { // Constructor
String greet = "Hello!";
}
public void setGreet() {
String greet = "Good Day!";
}
public static void main (String[] args){
App t = new App();
String greet = "Good Luck!";
System.out.println(t.greet);
}
}
The answer is the letter C. There is not much to say, he is accessing the variable "greet" of the variable "t" which is an object of type "app", and this variable "greet" is Welcome!
upvoted 3 times
...
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
carloswork
2 months, 2 weeks agoiSnover
3 months ago