Search Header Logo

Java Quiz 2

Authored by Faimina B S

Computers

University

Used 2+ times

Java Quiz 2
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

Which of the following statements is a valid declaration of an object that belongs to “MyClass”?


MyClass obj = new MyClass();


MyClass obj = new MyClass;

obj = new MyClass();


new MyClass obj;

2.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

How many objects can be made from a class? 


None, you make classes from objects

one

As many as you want

All of the above

3.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

The ____ method executes first in an application, regardless of where you physically place it within its class.

execute()


main()

start()


run()

4.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

To create an object in java we use the keyword new.


True


False

5.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

<class name><Object name>=new <class name>();

This is syntax of creating ______.

class


object

method


function

6.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

What does the final keyword do in front of a variable 'x' declaration do?


the "final" keyword means a man is taking his final, so do not disturb him.


the "final" keyword means there is only one attribute in the Main class.

The "final" keyword before the declaration of the variable "x" indicates that it is a constant and cannot be modified after its initial assignment.


the "final" keyword before the declaration of the variable "x" indicates that there is only one method() in this class.

7.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

Which of the following line of codes calls an attribute x within a class, and prints its value?

System.out.println(x());

System.out.println(x);

System.out.println(obj.x)

System.out.println("x");

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers