Home

What is the correct answer?

4

The expression (x == y && a<b) is true If either x == y is true or a<b is true.

A. True

B. False

Correct Answer :

B. False


Related Questions

Which of the following represent legal flow control statements? When the string objects are compared with ==, the result is true If the… A final class may not have any abstract method. We can add more than one class(es) at the time of compilation Java Beans. Every method of a final in class is implicitly final. Declarations can appear anywhere in the body of a Java method. A static class method can be invoked by simply using the name of the method… In a single Servlet class we can use____________ A constructor must always invoke its supper class constructor in its first… Which of the following are the wrapper classes? A panel can not be added to another panel. The default case is always required in the switch selection structure. The name of the RMI compiler is ___________ The length of a string object 's1' can be obtained using the expression… An EJB is a server-side component that encapsulates the business logic… The modulus operator (%) can be used only with Integer operands. When X is a positive number the operations x>> 2 and x>>>2… Consider the following code snippet: try {int x=0; int y=50/x; System.out.println("Division… Which javadoc tag is used to denote a comment for methods parameters? Give file is a file object, which of the following are legal statements… Session bean The check box group class is a subclass of the component class. Two methods cannot have the same name in Java. If a=10 and b= 15, then the statement x =(a>b)?a:b; assigns the value… Java always provides a default constructor to a class. Which of the following classes are available in the java.lang package? Connection, Statement are interfaces and ResultSet is a class. A string object can not be modified after it is created. With javadoc, which of the following denotes a javadoc comment? In RMI before running the client program we must start RMI Registry.