in Education by
Which of these is an correct way of defining generic method? (a) name(T1, T2, …, Tn) { /* … */ } (b) public name { /* … */ } (c) class name[T1, T2, …, Tn] { /* … */ } (d) name{T1, T2, …, Tn} { /* … */ } I have been asked this question in an internship interview. The question is from Generic Methods topic in portion Generics of Java Select the correct answer from above options

1 Answer

0 votes
by
 
Best answer
The correct option is (b) public name { /* … */ } The explanation is: The syntax for a generic method includes a type parameter, inside angle brackets, and appears before the method’s return type. For static generic methods, the type parameter section must appear before the method’s return type.

Related questions

0 votes
    Which of these type parameters is used for a generic methods to return and accept any type of object? (a) ... chapter Generics of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    Which of these type parameters is used for a generic methods to return and accept a number? (a) K (b) N ... in portion Generics of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    What are generic methods? (a) Generic methods are the methods defined in a generic class (b) Generic methods ... Generics of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    Which of these is an correct way making a list that is upper bounded by class Number? (a) List...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    Which of these is an correct way of defining generic class? (a) class name(T1, T2, , Tn) { /* ... Interfaces & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    Which of these types cannot be used to initiate a generic type? (a) Integer class (b) Float class (c) ... in section Generics of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    Which of these is an correct way of defining generic method? (a) name(T1, T2, , Tn) { /* ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 24, 2021 in Education by JackTerrance
0 votes
    Which of these instance cannot be created? (a) Integer instance (b) Generic class instance (c) Generic type ... Generics of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    Which of these is wildcard symbol? (a) ? (b) ! (c) % (d) & I have been asked this question in ... Wildcards in section Generics of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    Which of these keywords is used to upper bound a wildcard? (a) stop (b) bound (c) extends (d) ... in chapter Generics of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    Which of these is an correct way of defining generic class? (a) class name(T1, T2, , Tn) { ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 24, 2021 in Education by JackTerrance
0 votes
    What is use of wildcards? (a) It is used in cases when type being operated upon is not known (b) It is ... in portion Generics of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    I use Eclipse for java, this is the error is got. Type safety: Unchecked cast from Object to HashMap Now there is ... how to use it? Select the correct answer from above options...
asked Jan 21, 2022 in Education by JackTerrance
0 votes
    I'm relatively new to C++, recently moved from C# and Java (and before that, used to work in ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    Which of these type parameters is used for a generic class to return and accept any type of object? (a) K ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
...