I'm always there for people out there looking for some pointss .... sometimes I will be offline , but now you guys can get points !
Answers
Answered by
3
Answer:
class Test
{
public static void main (String[] args)
{
int arr1[] = {1, 2, 3};
int arr2[] = {1, 2, 3};
if (arr1 == arr2) // Same as arr1.equals(arr2)
System.out.println("Same");
else
System.out.println("Not same");
}
}
Answered by
22
Explanation:
⟹
Similar questions