adplus-dvertising
frame-decoration

Question

What is the output of the below Java program with Varargs?
public class Varargs4
{
  Varargs4(int... carnums)
  {
    System.out.println("Inside Varargs(int...)");
  }
  Varargs4(float... prices)
  {
    System.out.println("Inside Varargs(float...)");
  }
  public static void main(String[] args)
  {
    new Varargs4();
  }
}

a.

Inside Varargs(int...)

b.

Inside Varargs(int...)
Inside Varargs(float...)

c.

No output

d.

Compiler error

Answer: (a).Inside Varargs(int...)

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the below Java program with Varargs?

Similar Questions

Discover Related MCQs

Q. Which is the error thrown when two methods with varargs look the same to the compiler?

Q. A Java Vararg or Variable Argument can come at any position in a method or constructor. State TRUE or FALSE.

Q. A Java-Vararg can be of any type like primitive or object type. State TRUE or FALSE.

Q. A Java vararg is a ____.

Q. A Java-Vararg is nothing but ____.

Q. Java Varargs are applicable only for ___.

Q. Which are the methods used to parse string values to the respective data types in Java?

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.

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. Choose the correct way of receiving command-line arguments with in the MAIN method 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. Is there any limit to the number of spaces between two arguments of command-line arguments in Java?

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

Q. The delimiter used to separate command-line arguments in Java 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 type of Arguments the MAIN method accepts is ___.

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

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

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

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