What will be the output of the following Java program?
class string_class
{
public static void main(String args[])
{
String obj = “hello”;
String obj1 = “world”;
String obj2 = “hello”;
System.out.println(obj.equals(obj1) + ” ” + obj.equals(obj2));
}
}
a) false false
b) true true
c) true false
d) false true
Answer: d
Explanation: equals() is method of class String, it is used to check equality of two String objects, if they are equal, true is retuned else false.
Related Posts
What will be the output of the following Python code?
>>> a=[(2,4),(1,2),(3,9)]
>>> a.sort()
>>> aIs the following Python code valid?
>>> a=(1,2,3)
>>> b=a.update(4,)What will be the output of the following Python code?
>>> a=(2,3,1,5)
>>> a.sort()
>>> aIs the following Python code valid?
>>> a=2,3,4,5
>>> aTuples can’t be made keys of a dictionary.
What will be the output of the following Python code?
>>> import collections
>>> a=collections.namedtuple(‘a’,[‘i’,’j’])
>>> obj=a(i=4,j=7)
>>> objWhat will be the output of the following Python code?
>>> a,b=6,7
>>> a,b=b,a
>>> a,b
Join The Discussion