Oloks Ridwan
Quiz von , erstellt am more than 1 year ago

JSF

34
0
0
Oloks Ridwan
Erstellt von Oloks Ridwan vor mehr als 9 Jahre
Schließen

ASPW

Frage 1 von 80

1

What is a principal?

Wähle eine der folgenden:

  • represents an (authenticated) user

  • represents

Erklärung

Frage 2 von 80

1

What is a role?

Wähle eine der folgenden:

  • group of principals who share common set of permissions

  • group

Erklärung

Frage 3 von 80

1

What annotations can be used to specify security privileges?

Wähle eine der folgenden:

  • @PermitAll
    @DenyAll
    @RolesAllowed
    @DeclareRoles
    @RunAs

  • @PermitAll

Erklärung

Frage 4 von 80

1

What is the difference between container-managed and application-managed security?
What are the pros and cons of each? When might you choose to use one in preference to the other?

Wähle eine der folgenden:

  • Pros and cons of application-managed security
    Pro: complete control
    Pro: can fine-tune for performance
    Con: you might forget to put it in a method
    Con: managing site-wide may be a problem

  • Pros and cons of application-managed security

Erklärung

Frage 5 von 80

1

What is a native query?

Wähle eine der folgenden:

  • Native Queries are a concise and type-safe way to express queries directly as Java method.

  • Java Method

Erklärung

Frage 6 von 80

1

Why is using a named query often more efficient than a JPQL query?

Wähle eine der folgenden:

  • Using named queries may improve code organisation by separating the JPQL query strings from the Java code. It also enforces the use of query parameters rather than embedding literals dynamically into the query string and results in more efficient queries.

  • Using named queries may improve code organisation

Erklärung

Frage 7 von 80

1

Why is using a named query often more efficient than a JPQL query?

Wähle eine der folgenden:

  • Using named queries may improve code organization by separating the JPQL query strings from the Java code. It also enforces the use of query parameters rather than embedding literals dynamically into the query string and results in more efficient queries.

  • test

Erklärung

Frage 8 von 80

1

What is the JPA implementation that we use called? What other implementations are there?

Wähle eine der folgenden:

  • Hibernate,
    Toplink, we use this for JPA implementation in our coursework
    OpenJPA

  • Toplink, we use this for JPA implementation in our coursework

Erklärung

Frage 9 von 80

1

What are the pros and cons of using JPQL queries and criteria queries?

Wähle eine der folgenden:

  • JPQL queries are defined as strings, similarly to SQL. JPA criteria queries, on the other hand, are defined by instantiation of Java objects that represent query elements.
    Advantage of using the criteria API is that errors can be detected earlier, during compilation rather than at runtime. On the other hand, for many developers string based JPQL queries, which are very similar to SQL queries, are easier to use and understand.
    For simple static queries - string based JPQL queries may be preferred.
    For dynamic queries that are built at runtime - the criteria API may be preferred. It is cleaner when using the JPA criteria API, because it eliminates the need for building the query using many string concatenation operations.

  • need for building the query using many string concatenation operations.

Erklärung

Frage 10 von 80

1

What is a native query?

Wähle eine der folgenden:

  • Native Queries are a concise and type-safe way to express queries directly as Java method.

  • Java method.

Erklärung

Frage 11 von 80

1

What is the difference between optimistic and pessimistic transaction locking? Which do we normally use?

Wähle eine der folgenden:

  • Optimistic locking is applied on transaction commit. Any database object that has to be updated or deleted is checked

  • Any database object that has to be updated or deleted is checked

Erklärung

Frage 12 von 80

1

What is the relationship between a persistence unit and an entity manager?

Wähle eine der folgenden:

  • A persistence unit defines a set of all entity classes that are managed by EntityManager
    While The EntityManager is the primary interface used by application developers to interact with the JPA runtime

  • A persistence unit defines a set of all entity classes that are managed by EntityManager

Erklärung

Frage 13 von 80

1

What is a persistence unit and where are its details usually to be found?

Wähle eine der folgenden:

  • A persistence-unit provides a convenient way of specifying a set of metadata files, and classes, and jars that contain all classes to be persisted in a grouping.
    To define a persistence-unit you first need to add a file persistence.xml to the META-INF/ directory of your application jar.
    http://www.datanucleus.org/products/datanucleus/jpa/emf.html#persistenceunit

  • A persistence-unit provides a convenient way of specifying a set of metadata files, and classes, and jars that contain all classes to be persisted in a grouping.

Erklärung

Frage 14 von 80

1

What is a data access object used for?

Wähle eine der folgenden:

  • The Data Access Object is basically an object or an interface that provides access to an underlying database or any other persistence storage.

  • any other persistence storage.

Erklärung

Frage 15 von 80

1

What is a named query and what is it useful for?

Wähle eine der folgenden:

  • A named query is a statically defined query with a predefined unchangeable query string.

  • A named query

Erklärung

Frage 16 von 80

1

What major effort does JPQL save in comparison with SQL?

Wähle eine der folgenden:

  • The main difference between JPQL and SQL lies in that the former deals with JPA entities, while the latter deals directly with relational data. As a Java developer, you also maybe interested to learn that using JPQL, unlike SQL/JDBC, eliminates the need for you to use JDBC API from your Java code—the container does all this work for you behind the scenes.

  • The main

Erklärung

Frage 17 von 80

1

What is JPQL?

Wähle eine der folgenden:

  • The Java Persistence Query Language (JPQL) is a platform-independent object-oriented query language defined as part of the Java Persistence API (JPA) specification. JPQL is used to make queries against entities stored in a relational database.

  • The Java Persistence Query Language (

Erklärung

Frage 18 von 80

1

Why is JPQL useful?

Wähle eine der folgenden:

  • It is platform-independent.

  • its

Erklärung

Frage 19 von 80

1

What do we mean when we say that an entity is detached?

Wähle eine der folgenden:

  • A detached entity is an entity which state must not be reflected by the JPA provider.

    In other words, if you change its state (i.e. through setters methods) these changes will not be saved to the underlying database, as the JPA provider doesn't have to "observe" such entities.

  • A detached entity is an entity which state must not be reflected by the JPA provider.

Erklärung

Frage 20 von 80

1

How do you obtain an entitymanager when operating in each environment

Wähle eine der folgenden:

  • A container-managed entity manager is obtained in an application through dependency injection or through JNDI lookup. A container-managed entity

    manager requires the use of a JTA transaction. An Application managed entity manager is retrieved through the EntityManagerFactory API.

  • A container-managed entity manager is obtained in an application through dependency injection or through JNDI lookup

Erklärung

Frage 21 von 80

1

What is an entity manager?

Wähle eine der folgenden:

  • The EntityManager is the primary interface used by application developers to interact with the JPA runtime.
    The methods of the EntityManager can be divided into the following functional categories:
    • Transaction association.
    • Entity lifecycle management.
    • Entity identity management.
    • Cache management.
    • Query factory.
    • Closing.

  • • Closing.

Erklärung

Frage 22 von 80

1

Which relationships are by default eager, and which are by default lazy?

Wähle eine der folgenden:

  • one to one → eager many to many → lazy

  • one to one → eager

Erklärung

Frage 23 von 80

1

What strategies are available for mapping inheritance relationships in JPA?we have

Wähle eine der folgenden:

  • 3
    a InheritanceType.SINGLE_TABLE -
    b InheritanceType.TABLE_PER_CLASS
    c InheritanceType.JOINED

  • a InheritanceType.SINGLE_TABLE -

Erklärung

Frage 24 von 80

1

What do the terms eager and lazy mean in this context?

Wähle eine der folgenden:

  • It gives a hint to the persistence provider runtime that data should be fetched lazily (only when the application asks for the property) or eagerly (when the entity is initially loaded by the provider).

  • the entity is initially loaded by the provider).

Erklärung

Frage 25 von 80

1

How do you tell JPA where to store the data that makes up a foreign key? [Be careful!]

Wähle eine der folgenden:

  • @OneToOne @JoinColumn(name="parent_id", referencedColumnName="ID") private Parent parent; }

  • (name="parent_id", referencedColumnName="ID") private Parent parent; }

Erklärung

Frage 26 von 80

1

Explain what an HTTP request is

Wähle eine der folgenden:

  • it is a message from client to server requesting resources

  • requesting resources

Erklärung

Frage 27 von 80

1

How does an HTTP request travel over a network?

Wähle eine der folgenden:

  • it is traveling through TCPIP protocol

  • protocol

Erklärung

Frage 28 von 80

1

Explain what an HTTP response is and its relationship to a request

Wähle eine der folgenden:

  • It is the message from the server to the client as per the request sent from the client to server.

  • from the client to server.

Erklärung

Frage 29 von 80

1

Explain what HTTP status codes such as 200 and 404 mean

Wähle eine der folgenden:

  • 404 code is the status code from the server to the client indicating the resource not found. 200 it is the code from server to client indicating that the request is received successful

  • request is received successful

Erklärung

Frage 30 von 80

1

What is a mime type and what is its relationship to HTTP messages?

Wähle eine der folgenden:

  • Multipurpose Internet Mail Extension. The relation between the HTTP and MIME type is MIMIE type is part of HTTP header response

  • The relation between the HTTP and MIME type is MIMIE type is part of HTTP header response

Erklärung

Frage 31 von 80

1

Why in the WWW might there be more HTTP requests than HTTP responses?

Wähle eine der folgenden:

  • Because the request might not reach to the server because of network error. or might be the server is switched off.

  • switched off.

Erklärung

Frage 32 von 80

1

What is the difference between a static web page and a dynamic one?

Wähle eine der folgenden:

  • Developers generally create static pages with HTML, but use languages like PHP, Javascript, or Actionscript to create dynamic pages. They can also use frameworks like Ruby on Rails, Django, or Flex for dynamic pages. Dynamic languages and frameworks also have the technical capacity to create static Web page content. However, doing so creates source code that is unnecessarily complex for its purpose while being more difficult to maintain

  • html

Erklärung

Frage 33 von 80

1

How does the content of a dynamic web page get created?

Wähle eine der folgenden:

  • PHP, Javascript, or Actionscript

  • a

Erklärung

Frage 34 von 80

1

What are the four architectures for dynamic web applications?

Wähle eine der folgenden:

  • CGI, server side include, server module and auxiliary server

  • auxiliary server

Erklärung

Frage 35 von 80

1

Why is the architecture that Java uses the most scalable?

Wähle eine der folgenden:

  • By adding more auxiliary server

  • by adding more auxiliary server

Erklärung

Frage 36 von 80

1

Why is the architecture that Java uses the most resilient?

Wähle eine der folgenden:

  • high availability, fault tolerance

  • ssss

Erklärung

Frage 37 von 80

1

How can you use Java's architecture to provide an enterprise web application on a global scale

Wähle eine der folgenden:

  • by adding more web servers and auxiliary server

  • auxiliary server

Erklärung

Frage 38 von 80

1

What is a servlet?

Wähle eine der folgenden:

  • min program receive the request from the client and map it to functionality

  • functionality

Erklärung

Frage 39 von 80

1

What is a JSP?

Wähle eine der folgenden:

  • java web programming get translated to servlet once received by servlet engine

  • servlet engine

Erklärung

Frage 40 von 80

1

What is the relationship between a JSP and a servlet?

Wähle eine der folgenden:

  • JSP is a servlet

  • servlet

Erklärung

Frage 41 von 80

1

What advantages does Java's servlet programming model have over (a) CGI? (b) PHP?

Wähle eine der folgenden:

  • threading and at each time CGI has to run a program which is not good practice for OS. The problem of php is in case the module is crashed than the web server is also down

  • The problem of php is in case the module is crashed than the web server is also down

Erklärung

Frage 42 von 80

1

What is an exception and what is one used for?

Wähle eine der folgenden:

  • it is used to reporting the error.( exception is an event which occur during the execution of a program, that disrupts the normal flow of the program instructions.

  • ( exception is an event which occur during the execution of a program, that disrupts the normal flow of the program instructions.

Erklärung

Frage 43 von 80

1

Explain throwing and catching exceptions?

Wähle eine der folgenden:

  • Creating an object and handing it to the runtime system is called throwing exception. The exception handler chosen is said to catch the exception.

  • Creating an object

Erklärung

Frage 44 von 80

1

What do we mean when we say that one class inherits from another?

Wähle eine der folgenden:

  • It is the mechanism where in a new class is derived from existing class. class may inherit or acquire the properties and methods of other class.

  • It is the mechanism where in

Erklärung

Frage 45 von 80

1

If an application had classes Person, StaffMember and Student, how might they be related?

Wähle eine der folgenden:

  • StaffMember and Student are sub class of Person

  • Person

Erklärung

Frage 46 von 80

1

java.util and jim.sums.entities are examples of what?

Wähle eine der folgenden:

  • packages

  • p

Erklärung

Frage 47 von 80

1

What is the difference between a field that is private, protected or public?

Wähle eine der folgenden:

  • Private:- filed it can be use within the class and it can not be used outside the class
    protected:- visible only to the class where it is declared and to subclasses
    public:- it is visible to all class, subclass and packages

  • packages

Erklärung

Frage 48 von 80

1

What does static mean when associated with a class's fields or methods? it is a variable which is not changed wherever it called or used

Wähle eine der folgenden:

  • it is a variable which is not changed wherever it called or used

  • used

Erklärung

Frage 49 von 80

1

Explain what the classes/interfaces Collection, Set, List, ArrayList and Vector represent and what are the distinctions between them?

Wähle eine der folgenden:

  • A Collection represents a group of objects known as its elements. The Collection interface is used to pass around collections of objects where maximum generality is desired.
    A Set is a Collection that cannot contain duplicate elements.
    A List is an ordered Collection (sometimes called a sequence). Lists may contain duplicate elements.
    Array List:- general purpose implementation list which is usually the best performing implementation

  • e

Erklärung

Frage 50 von 80

1

What is a Map

Wähle eine der folgenden:

  • A Map is an object that maps keys to values

  • values

Erklärung

Frage 51 von 80

1

What does the declaration Map<String, Person> represent?

Wähle eine der folgenden:

  • mapping from string to person

  • w

Erklärung

Frage 52 von 80

1

What is a facelet?

Wähle eine der folgenden:

  • it is part of java server written in xml

  • xml

Erklärung

Frage 53 von 80

1

What is a managed bean?

Wähle eine der folgenden:

  • it is a class with constructor and getter and setter. Also it is JSF controller

  • Also it is JSF controller

Erklärung

Frage 54 von 80

1

What is meant by the scope of a managed bean?

Wähle eine der folgenden:

  • it is mean the lifetime of the object

  • lifetime of the object

Erklärung

Frage 55 von 80

1

What are the available scopes to choose from?

Wähle eine der folgenden:

  • Session scope:- (session end when its timeout)
    Request scope:- start when request started and end after request is received
    Application scope:-
    View scope:-

  • start when request

Erklärung

Frage 56 von 80

1

Which scope is the default?

Wähle eine der folgenden:

  • in JAVA EE6 is request scope, in JAVA EE7 is non scoped

  • JAVA EE6

Erklärung

Frage 57 von 80

1

Give at least 10 examples of how different HTML controls can be represented using facelet tags

Wähle eine der folgenden:

  • h:inputText , h:inputHidden, h:inputSecret, h:inputTextarea, h:link, h:commandButton, h:button, h:form, h:panelGrid , h:dataTable

  • h:inputText

Erklärung

Frage 58 von 80

1

What do the properties of a managed bean represent?

Wähle eine der folgenden:

  • the data which can be share between view and controller

  • controller

Erklärung

Frage 59 von 80

1

What notation is used in a facelet to associate a property or method with a control?

Wähle eine der folgenden:

  • expression language #

  • &&

Erklärung

Frage 60 von 80

1

Why is JSF superior to JSP?

Wähle eine der folgenden:

  • jsp is not supported MVC pattern fully, while jsf is fully supported for JSF

  • upported for JSF

Erklärung

Frage 61 von 80

1

What are the 3 types of session bean?

Wähle eine der folgenden:

  • stateless, stateful and Singleton

  • Singleton

Erklärung

Frage 62 von 80

1

In what circumstances would you use each of the 3 types?

Wähle eine der folgenden:

  • stateful: The bean needs to hold information about the client across method invocations.
    stateless:- The bean’s state has no data for a specific client.
    Singleton:-State needs to be shared across the application.

  • Singleton:-State needs to be shared across the application.

Erklärung

Frage 63 von 80

1

Which of the 3 types is most commonly used?

Wähle eine der folgenden:

  • stateless

  • l

Erklärung

Frage 64 von 80

1

What is the difference between a session bean and a message bean?

Wähle eine der folgenden:

  • message bean used to deal with messages while session beans used in business logic to interact with database

  • database

Erklärung

Frage 65 von 80

1

What is dependency injection?

Wähle eine der folgenden:

  • Dependency injection (DI) is the concept of providing an external dependency to a specific resource, generally by a Java EE container It enables you to provide a set of services to Java EE components

  • Java EE components

Erklärung

Frage 66 von 80

1

Who or what does the injecting?

Wähle eine der folgenden:

  • Who=java EE container, what= @EJB

  • ll

Erklärung

Frage 67 von 80

1

What annotation is normally used for dependency injection?

Wähle eine der folgenden:

  • @EJB

  • l

Erklärung

Frage 68 von 80

1

How would you specify the start and end of a transaction in a stateful EJB? BY using

Wähle eine der folgenden:

  • @REMOVE annotation

  • @REMOVE annotationl

Erklärung

Frage 69 von 80

1

What annotations can be used to control what happens when an EJB is created or destroyed? @PreDestroy @PostConstruct

Wähle eine der folgenden:

  • destroyed? @PreDestroy @PostConstruct

  • @PostConstruct

Erklärung

Frage 70 von 80

1

What is the timer service used for?

Wähle eine der folgenden:

  • Enables you to schedule timed notifications for all types of enterprise beans except for stateful session beans. You can schedule a timed notification to occur according to a calendar schedule, at a specific time, after a duration of time, or at timed. How to use it? intervals.timerService.createSingleActionTimer(duration, new TimerConfig());

  • TimerConfig());

Erklärung

Frage 71 von 80

1

What is the difference between a local interface, a remote interface and a no-interface view?

Wähle eine der folgenden:

  • When EJB does not explicitly specify as interface type it is assume to be local otherwise it is remote. @localBean @remoteBean No -Interface :Is almost same as local client view, but there are differences. Your bean class is not required to implement client view interfaces in this case. All public methods of the bean class are automatically exposed to the caller. no-interface view always acquires an EJB reference

  • l

Erklärung

Frage 72 von 80

1

What do we mean by pooling beans?

Wähle eine der folgenden:

  • There's a limited number of beans in a pool and the container picks instances from the pool to serve requests as they come.

  • picks instances from the pool to serve requests as they come.

Erklärung

Frage 73 von 80

1

What is an entity bean?

Wähle eine der folgenden:

  • Mapping object to database, representing business object

  • object

Erklärung

Frage 74 von 80

1

How do you make a bean an entity bean?

Wähle eine der folgenden:

  • @enitity annotation

  • by

Erklärung

Frage 75 von 80

1

What does the @Id annotation do?

Wähle eine der folgenden:

  • is the annotation used to specify primary key

  • primary key

Erklärung

Frage 76 von 80

1

What annotation is used to denote a composite primary key?

Wähle eine der folgenden:

  • @embeddedID

  • @

Erklärung

Frage 77 von 80

1

Under what particular circumstances would you have to use the @Column and/or @Table annotations?

Wähle eine der folgenden:

  • when the database column not match the entity class column

  • entity class column

Erklärung

Frage 78 von 80

1

Explain what is meant by a unidirectional relationship and a bidirectional relationship?

Wähle eine der folgenden:

  • In a unidirectional relationship, only one entity has a relationship field or property that refers to the other. For example, LineItem would have a relationship field that identifies Product, but Product would not have a relationship field or property for LineItem. In other words,LineItem knows about Product, but Product doesn’t know which LineItem instances refer to it.
    while in a bidirectional relationship, each entity has a relationship field or property that refers to the other entity. Through the relationship field or property, an entity class’s code can access its related object. If an entity has a related field, the entity is said to “know” about its related object. For example, if Order knows what LineItem instances it has and if LineItem knows what Order it belongs to, they have a bidirectional relationship.

  • relationship,

Erklärung

Frage 79 von 80

1

What are the annotations used to specify the chosen inheritance strategy? Where must those annotations be placed?

Wähle eine der folgenden:

  • @inheritence Before the constructor class.

  • constructor class.

Erklärung

Frage 80 von 80

1

How do you get JPA to arrange your lists in the right order?

Wähle eine der folgenden:

  • @orderBySource

  • Source

Erklärung