Craking the Java Coding Interview 1º DAM

Craking the Java Coding Interview 1º DAM

Professional Development

8 Qs

quiz-placeholder

Similar activities

Asking for/giving information

Asking for/giving information

5th Grade - Professional Development

10 Qs

Determiners / Subjects

Determiners / Subjects

Professional Development

11 Qs

Discourse - Bourdieu

Discourse - Bourdieu

University - Professional Development

9 Qs

B2 Class Regulations!

B2 Class Regulations!

Professional Development

10 Qs

5 P's

5 P's

Professional Development

11 Qs

Montly Presentation |CI - UCSP

Montly Presentation |CI - UCSP

Professional Development

13 Qs

Kids 3 - Unit 8, act. 19

Kids 3 - Unit 8, act. 19

KG - Professional Development

10 Qs

Training Recap

Training Recap

Professional Development

10 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 ___________.