Multiple Choice
Which of the following method calls illustrate using the return value of a method as an argument?
A) greeting.length() ;
B) greeting.println("Hello") ;
C) System.out.println(length.greeting() ) ;
D) System.out.println(greeting.length() ) ;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q21: In Java, objects within the same class
Q22: The input to a method is called
Q23: A method name is _ if a
Q24: Which package is automatically imported in any
Q25: The "building blocks" that Java programmers use
Q27: Which of the following is the best
Q28: Which is not a method of the
Q29: What is the purpose of a test
Q30: If greeting refers to a String object,
Q31: Which of the following statements about methods