Question: import javafx.beans.property.IntegerProperty; import javafx.beans.property.SimpleIntegerProperty; public class Test { public static void main ( String [ ] args ) { IntegerProperty d 1 = new SimpleIntegerProperty

import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
public class Test {
public static void main(String[] args){
IntegerProperty d1= new SimpleIntegerProperty(1);
IntegerProperty d2= new SimpleIntegerProperty(2);
d1.bind(d2);
System.out.print("d1 is "+ d1.getValue()
+" and d2 is "+ d2.getValue());
d2.setValue(3);
System.out.println(", d1 is "+ d1.getValue()
+" and d2 is "+ d2.getValue());
}
}
Group of answer choices
d1 is 2 and d2 is 2, d1 is 3 and d2 is 3
d1 is 2 and d2 is 2, d1 is 2 and d2 is 3
d1 is 1 and d2 is 2, d1 is 3 and d2 is 3
d1 is 1 and d2 is 2, d1 is 1 and d2 is 3

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!