adplus-dvertising
frame-decoration

Question

Which of the following will produce an answer that is closest in value to a double, d, while not being greater than d?

a.

(int)Math.min(d);

b.

(int)Math.max(d);

c.

(int)Math.abs(d);

d.

(int)Math.floor(d);

Answer: (d).(int)Math.floor(d);

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following will produce an answer that is closest in value to a double, d, while not being greater than d?

Similar Questions

Discover Related MCQs

Q. What two statements are true about the result obtained from calling Math.random()?


1. The result is less than 0.0.
2. The result is greater than or equal to 0.0..
3. The result is less than 1.0.
4. The result is greater than 1.0.
5. The result is greater than or equal to 1.0.

Q. Which of these class have only one field "TYPE"?

Q. Standard output variable "out" is defined in which class?

Q. Which of the following is method of wrapper Float for converting the value of an object into byte?

Q. A command-line argument in Java is a value passedat the time of ___ a program.

Q. Command-line arguments help in a way of ____ data to a program.

Q. The command-line arguments are passes at ____.

Q. When a Java program is executed once, how many times can you pass data using the Command-line arguments?

Q. If you need to accept data at runtime, you use ___ in Java.

Q. Which is the method that accepts data passed in the form of command-line arguments in Java?

Q. The command-line arguments in Java are used along with a ____ command.

Q. The type of Arguments the MAIN method accepts is ___.

Q. The data that is passed at the time of running a Java program as command-line arguments are converted into ___ data type.

Q. The delimiter used to separate command-line arguments in Java is ____.

Q. Can you pass a sentence with multiple words separated by spaces as a single command-line argument in Java?

Q. Is there any limit to the number of spaces between two arguments of command-line arguments in Java?

Q. To pass a string as a command-line argument in Java, you need to surround the text within a pair of ___.

Q. Choose the correct way of receiving command-line arguments with in the MAIN method in Java?

Q. Which is the exception or error that is thrown if a non-existing command-line argument is referred to in a Java program?

Q. Any type of data that can be typed on a console or ECLIPSE can be passed as a command-line argument. State TRUE or FALSE.