Icon Créer jeu Créer jeu

Java vocabulary check

Compléter

Fill in the gaps by typing

Téléchargez la version papier pour jouer

Âge recommandé: 20 ans
1 fois fait

Créé par

Russian Federation

Top 10 résultats

Il n'y a toujours pas de résultats pour ce jeu. Soyez le premier à apparaître dans le classement! pour vous identifier.
Créez votre propre jeu gratuite à partir de notre créateur de jeu
Affrontez vos amis pour voir qui obtient le meilleur score dans ce jeu

Top Jeux

  1. temps
    but
  1. temps
    but
temps
but
temps
but
game-icon

Completar

Java vocabulary check

Fill in the gaps by typing

Nastia Sakharova
1

installation readable execute

JVM also known as Java Virtual Machine is a part of JRE . JVM is a type of interpreter responsible for converting bytecode into machine - ( ? ? ? ? ? ? ? ? ) code . JVM itself is platform dependent but it interprets the bytecode which is the platform - independent .
JRE stands for Java Runtime Environment , it is an ( ? ? ? ? ? ? ? ? ? ? ? ? - ? ? ? . ) package that provides an environment to run the Java program or application on any machine .
JDK stands for Java Development Kit which provides the environment to develop and ( ? ? ? ? ? ? ? ? ? , ? ? ? ? ? ? ? ? ? ) Java programs .

2

details responsibility Details depend on base modification extension

SOLID :
Single - ( ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ) principle ( SRP ) : A class should have only one reason to change .
Open ? closed principle ( OCP ) : Entities should be open for ( ? ? ? ? ? ? ? ? ? ? ) , but closed for ( ? ? ? ? ? ? ? ? ? ) .
Liskov substitution principle ( LSP ) : Functions that use pointers or references to ( ? ? ? ? ? ? ? ) classes must be able to use objects of derived classes without knowing it .
Interface segregation principle ( ISP ) : No code should ( ? ? ? ? ? ? ? ? ? ? ) methods it does not use .
Dependency inversion principle ( DIP ) :
A . High - level modules should not import anything from low - level modules . Both should depend on abstractions ( e . g . , interfaces ) .
B . Abstractions should not depend on ( ? ? ? ? ? ? ) . ( ? ? ? ? ? ? ) should depend on abstractions .

3

behavior implementation hide accessed implementation behavior

Abstraction is the process of separating ideas from specific instances . Java supports the creation and existence of abstract classes that expose interfaces , without including the actual ( ? ? ? ? ? ? ? ? ? ) of all methods . The abstraction technique aims to separate the ( ? ? ? ? ? ? ? ? ? ) details of a class from its ( ? ? ? ? ? ? ? ? ? ) .
Encapsulation provides objects with the ability to ( ? ? ? ? ? ? ? ) their internal characteristics and ( ? ? ? ? ? ? ? ? ? ) . Each object provides a number of methods , which can be ( ? ? ? ? ? ? ? ? ) by other objects and change its internal data .

4

Overloading Overriding ability

Polymorphism is the ( ? ? ? ? ? ? ? ? ? ? ? ) of programming languages to present the same interface for differing underlying data types . A polymorphic type is a type whose operations can also be applied to values of some other type .
We can perform polymorphism by Method ( ? ? ? ? ? ? ? ? ? ? ) and Method ( ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ) .