Quiz Topic 1 OOP Sesi I 2526

Quiz Topic 1 OOP Sesi I 2526

12th Grade

8 Qs

quiz-placeholder

Similar activities

Methods in Java

Methods in Java

10th - 12th Grade

11 Qs

Uji Coba Kuis PBO1

Uji Coba Kuis PBO1

10th Grade - University

5 Qs

APCS Unit 8

APCS Unit 8

12th Grade

10 Qs

APCSA Final

APCSA Final

12th Grade

10 Qs

Computer Science AP

Computer Science AP

12th Grade

10 Qs

PBO 1

PBO 1

12th Grade

10 Qs

Programmeerimiskeeled

Programmeerimiskeeled

10th Grade - University

12 Qs

Java basics quiz 1

Java basics quiz 1

10th Grade - University

12 Qs

Quiz Topic 1 OOP Sesi I 2526

Quiz Topic 1 OOP Sesi I 2526

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Athirah Musa

Used 3+ times

FREE Resource

8 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Object-oriented approach is a programming paradigm that uses ____________ to represent data and methods to manipulate that data.

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Choose CORRECT benefits of using OOP approach.
*Can choose more than one answer.

Easily extended

Increase maintenance cost

Creating well-structured program

Easily reusable

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The statement refers to which key OOP concepts?

Hiding data and methods within an object hence protecting the data from outside access and manipulation.

Inheritance

Abstraction

Class

Encapsulation

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement describe the key concept of inheritance in OOP.

Sharing the attributes and methods with an existing class.

Used to hide certain details and only show the essential features of the object.

A blueprint or prototype that defines the variables and the methods (functions) common to all objects of a certain kind.

Representative or specimen of a class.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose CORRECT access modifiers in Java.

final

break

public

abstract

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

The ____________ is the entry point of all Java applications. Whenever a Java application is started, it is the first method to be called.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

This architecture component is required to develop applications in Java.

JVM

JRE

JDK

JVE

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select CORRECT main() method.

public static void main (String[] args)

public static void main (String args)

public static void main(string [] args)

public static void Main (String[] args)