174k views
1 vote
Which of the following symbols would not be seen in the syntax for Java variables, methods, or arguments?

{}
()
??
[]

1 Answer

3 votes

Answer:

??

Step-by-step explanation:

?? is invalid syntax

When declaring or initializing variables names, and when writing methods, or arguments ?? is not used in Java .

() [] {} all these are used with variables , methods or arguments.

User Oliver Curting
by
5.7k points