What will be the output of the program? Class equals{ public static void main(string[] args){ int x=100; double y=100.1; boolean b=(x=y); system.Out.Println(b); } }?
Answers
Answered by
1
Answer:
False
Explanation:
as 100 is not equal to 100.1
Similar questions