Java class object method

Java class object method

University

40 Qs

quiz-placeholder

Similar activities

Intro to Java Fall 2020 Q1 Assessment Practice

Intro to Java Fall 2020 Q1 Assessment Practice

9th Grade - University

41 Qs

Quiz 1 PBO

Quiz 1 PBO

University

45 Qs

AP Java Exam

AP Java Exam

8th Grade - University

35 Qs

IT-OOPRGO21 PRELIM

IT-OOPRGO21 PRELIM

University

35 Qs

TECHNICAL QUIZ

TECHNICAL QUIZ

University

45 Qs

Java Quiz 1

Java Quiz 1

University

40 Qs

Core Java (B.Tech. (BI) V Sem)

Core Java (B.Tech. (BI) V Sem)

University

40 Qs

CPT 236 Test 3 Review

CPT 236 Test 3 Review

University

45 Qs

Java class object method

Java class object method

Assessment

Quiz

Computers

University

Medium

Created by

Mohd. Khan

Used 2+ times

FREE Resource

40 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to define a class in Java?

class MyClass { }

Class MyClass { }

object MyClass { }

public object MyClass { }

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an object in Java?

A variable

An instance of a class

A method inside a class

A keyword

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to create an object in Java?

create

make

new

object

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A method in Java must be defined inside:

Package

Class

Object

Interface only

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a valid method name in Java?

getData()

_processData()

123method()

display()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of this code? class Test { void show() { System.out.println("Hello"); } } public class Main { public static void main(String[] args) { Test t = new Test(); t.show(); }}

show

Hello

Error

Nothing

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Java, a method that does not return any value uses which return type?

empty

void

null

None

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?