adplus-dvertising
frame-decoration

Question

Choose the correct syntax for declaring a Java class below.

a.

class CLASSNAME
{

}

b.

CLASSNAME class
{

}

c.

class CLASSNAME;
{

}

d.

Class CLASSNAME
{

}

Posted under Java Programming

Answer: (a).class CLASSNAME
{

}

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Choose the correct syntax for declaring a Java class below.

Similar Questions

Discover Related MCQs

Q. State TRUE or FALSE.
A Java class provides encapsulation.

Q. The value of one primitive variable is assigned to another primitive variable by ___ in Java.

Q. A primitive variable is passed from one method to another method by ___ in Java.

Q. An object or primitive value that is passed from one method to another method is called ___ in Java. (Argument / Parameter)

Q. An object or a primitive value that is received in a method from another method is called ___ in Java. (Argument / Parameter)

Q. Java object assignment happens by ___.

Q. Java object passing from one method to another method happens by ___.

Q. In Java Pass by reference ___ is passed even if you are passing a reference to an object.

Q. A Java reference is comparable to ___ in C language.

Q. ___ is the superclass to all Java classes either user-defined or built-in.

Q. State TRUE of FALSE.
Java objects have built-in methods to handle threads.

Q. State TRUE or FALSE.
Java Object's hashcode() method is mainly used with Collection objects.

Q. A Java method is comparable to a __ in c language.

Q. All Java methods must have a return type. (TRUE / FALSE)

Q. State TRUE or FALSE.
A Java method can have the same name as the class name.

Q. in Java, add a ___ to a constructor to convert it into a method.

Q. Java method signature is a combination of ___.

Q. In Java, a method name can not start with a ___.

Q. In Java, a method name can start with ___.

Q. In Java, a method name can contain numbers from 2nd character onwards. (TRUE / FALSE).