Craking the Java Coding Interview 1º DAM

Craking the Java Coding Interview 1º DAM

Professional Development

8 Qs

quiz-placeholder

Similar activities

Sentences and Shnoz

Sentences and Shnoz

6th Grade - Professional Development

12 Qs

Cultura Inglesa Blended Course

Cultura Inglesa Blended Course

Professional Development

12 Qs

Cycle 2: Session 3 Review.

Cycle 2: Session 3 Review.

Professional Development

10 Qs

Cycle 3: Session 11 Review.

Cycle 3: Session 11 Review.

Professional Development

11 Qs

Health care in Finland

Health care in Finland

Professional Development

12 Qs

Non-Commissioned officers

Non-Commissioned officers

Professional Development

12 Qs

ASKING FOR INFORMATION

ASKING FOR INFORMATION

Professional Development

10 Qs

Behaviour at school

Behaviour at school

10th Grade - Professional Development

9 Qs

Craking the Java Coding Interview 1º DAM

Craking the Java Coding Interview 1º DAM

Assessment

Quiz

English

Professional Development

Medium

Created by

Criss MadCa

Used 12+ times

FREE Resource

8 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What are the visibility modifiers for members?

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

There is also a fourth one which consists in not putting any modifier

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Public modifier can accessed from

The class itself

Everywhere

Extended classes

4.

OPEN ENDED QUESTION

3 mins • 1 pt

How can be limited a public member?

Evaluate responses using AI:

OFF

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Private members can be accessed from

other classes within the same package

can be accessed within the class only

can be accessed from nay other class

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Public can be used

on class members

on clasess

on classes and class members

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If no visibility modifier is used

then by default, the classes, methods, and data fields are not accessible by any class in the same package.

then by default, the classes, methods, and data fields are accessible within the class only.

then by default, the classes, methods, and data fields are accessible by any class in the same package.

8.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Without the module system you can create a class in a package from any other _______ that can give you access to all the protected and package __________ members so the two levels you should really rely on __________ and ___________.