Home

What is the correct answer?

4

If a=10 and b= 15, then the statement x =(a>b)?a:b; assigns the value 15 to x.

A. True

B. False

Correct Answer :

A. True


Related Questions

All methods in an abstract class must be declared abstract. DriverManager.getConnection("jdbc:odbc:dsn_name") method does not depend… A string object can not be modified after it is created. Which of the following methods can be used to change the size of a size()… A constructor must always invoke its supper class constructor in its first… In the code below, what data types the variable x can have? Given the codeString s = new String("abc");Which of the following calls… Java is fully object oriented programme. Objects are passed to a method by use of call-by-reference. A static class method can be invoked by simply using the name of the method… What is java -g used for? Every method of a final in class is implicitly final. When we implement the Runnable interface, we must define the method For all insert, update, delete, query operations on a database, ResultSet… Which of the following control expressions are valid for an if statement? The break statement is required in the default case of a switch selection… A catch can have comma-separated multiple arguments. In order to connect to a database through java program we must create… We can add more than one class(es) at the time of compilation Java Beans. Which of the following will produce a value of 10 if x = 9.7? A final class may not have any abstract method. In evaluating a logical expression of type 'Boolean expression 1&& Boolean… Which key word can protect a class in package from accessibility by the… The import statement is always the first no comment statement in a Java… All the bitwise operators have the same level of precedence in Java. Frames and applets cannot be used together in the same program. Session bean Throwing an exception always causes program termination. Which exception is thrown by the read() method of InputStream class? executeUpdate automatically updates data because___________