subject

What is result of executing the following code? public class Question11 {
private static int x = 1;
public static void main(String[] args) {
int x = 5;
System. out. printf("local x in main is %d%n", x);
useLocalVariable();
useField();
useLocalVariable();
useField();
System. out. printf("%nlocal x in main is %d%n", x);
}
public static void useLocalVariable() {
int x = 25;
System. out. printf(
"%nlocal x on entering method useLocalVariable is %d%n", x);
++x;
System. out. printf(
"local x before exiting method useLocalVariable is %d%n", x);
}
public static void useField() {
System. out. printf(
"%nfield x on entering method useField is %d%n", x);
x *= 10; // modifies class Scope’s field x
System. out. printf(
"field x before exiting method useField is %d%n", x);
}
}

ansver
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 08:00, jcastronakaya
Apex q: what does a low employment rate indicate? a. not many people are earning high salaries b. not many people are going to college c. not many people are renting their homes d. not many people have jobs
Answers: 2
image
Computers and Technology, 22.06.2019 21:00, briannaleiigh
Kirk found a local community college with a two-year program and he is comparing the cost with that of an out-of-state two-year school. what is the expected total cost for one year at the local community college if kirk lives at home? what is the expected total cost for one year at the out-of-state school if kirk lives on campus?
Answers: 2
image
Computers and Technology, 23.06.2019 01:30, anggar20
Which tab is used to change the theme of a photo album slide show? a. design b. view c. transitions d. home
Answers: 1
image
Computers and Technology, 23.06.2019 03:50, nakeytrag
Iam a bacterium. i cause stomach cramps and diarrhea. i am caused by eating rotten foodssuch as chicken, fish, or eggs. sometimes turtles carry my bacteria. what am i?
Answers: 2
You know the right answer?
What is result of executing the following code? public class Question11 {
private static int...

Questions in other subjects:

Konu
Mathematics, 18.03.2021 14:10
Konu
English, 18.03.2021 14:10
Konu
Mathematics, 18.03.2021 14:10
Konu
Biology, 18.03.2021 14:10