Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What is the output of the second println statement in the main method? public class Foo { int i ; static int s = 0

What is the output of the second println statement in the main method?
public class Foo {
int i;
static int s=0;
public static void main(String[] args){
Foo f1= new F();
System.out.println("f1.i is "+ f1.i +" f1.s is "+ f1.s);
Foo f2= new F();
System.out.println("f2.i is "+ f2.i +" f2.s is "+ f2.s);
Foo f3= new F();
System.out.println("f3.i is "+ f3.i +" f3.s is "+ f3.s);
}
public Foo(){
i++;
s++;
}
}
a.f2.i is lf2.s is 2
b.f2.i is 2f2.s is 1
C.f2.i is 2f2.s is 2
d.f2.i is 1f2.s is
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Essential SQLAlchemy Mapping Python To Databases

Authors: Myers, Jason Myers

2nd Edition

1491916567, 9781491916568

More Books

Students also viewed these Databases questions

Question

305 mg of C6H12O6 in 55.2 mL of solution whats the molarity

Answered: 1 week ago