Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What is the output of the following code? import javafx.beans.property.IntegerProperty; import javafx. beans.property. SimpleIntegerProperty; public class Test { public static void main ( String [

What is the output of the following code?
import javafx.beans.property.IntegerProperty; import javafx. beans.property. SimpleIntegerProperty;
public class Test {
public static void main(String[] args){
IntegerProperty d1= new SimplelntegerProperty(1);
IntegerProperty d2= new SimplelntegerProperty(2);
d1.bindBidirectional(d2);
System.out.print("d1 is "+ d1.getValue()
" and d2 is "+ d2.getValue());
d1.setValue(3);
System.out.println(", d1 is "+ d1.getValue()
" and d2 is "+ d2.getValue());
}
}
a.d1 is 2 and d2 is 2,d1 is 3 and d2 is 3
b.d1 is 2 and d2 is 2,d1 is 2 and d2 is 3
c.d1 is 1 and d2 is 2,d1 is 1 and d2 is 3
d.d1 is 1 and d 2 is 2,d1 is 3 and d 2 is 3
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

Practical Database Programming With Visual C# .NET

Authors: Ying Bai

1st Edition

0470467274, 978-0470467275

More Books

Students also viewed these Databases questions