Craking the Java Coding Interview 1º DAM

Craking the Java Coding Interview 1º DAM

Professional Development

8 Qs

quiz-placeholder

Similar activities

B2.2ColomboBasics

B2.2ColomboBasics

Professional Development

11 Qs

Future predictions

Future predictions

Professional Development

12 Qs

Intro

Intro

1st Grade - Professional Development

10 Qs

PREPOSITIONS OF TIME

PREPOSITIONS OF TIME

Professional Development

10 Qs

PHRASAL VERBS

PHRASAL VERBS

Professional Development

10 Qs

[A2] Lesson 2B - Vocabulary: Studying

[A2] Lesson 2B - Vocabulary: Studying

Professional Development

8 Qs

Vocabulary 1 HI2 listening speaking chapter 4

Vocabulary 1 HI2 listening speaking chapter 4

3rd Grade - Professional Development

10 Qs

Educational Issues Awareness

Educational Issues Awareness

1st Grade - 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 ___________.