• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

some question in phase 1

 
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,all:
I have been preparing the exam for the scea phase 1,and I also have took
some mock exams.Some questions in the mock exams puzzled me a lot,so I want to consult you.Thanks in advance.
1. Which of the following is not an optional step in establishing an SSL handshake?
a. Server side certificate validation by the client
b. client side certificate validation by the server
c. Generation of session keys for encryption and decryption
d. Selection of a suitable Cipher suite for encryption by the server and the client
The correct answer is b ,but I don't know why?I think all steps are needed.
2. Which of the following are true about SSL?
a. SSL facilitates secure communication
b. SSL is a high level protocol and sits on top of HTTP
c. SSL is a low level protocol and sits below HTTP
d. SSL works only with HTTP
The correct answer is a,b,but I think the SSL sits on top of TCP,and below of HTTP.
3. Which of the following is used for deferring creation of expensive objects?
a. Proxy
b. Abstract Factory
c. Abstract method
d. Builder
The correct answer is a,but I think the pattern of Proxy may create objects to deal with something.But not always and with no relation to deferring.The correct answer should be b.
4. In CMP Entity Beans, which of the following statements is true?
a. The Entity Bean Class should not define any constructors
b. The Entity Bean class must define a no-argument constructor
The correct answer is a,but why?The Entity Bean Class may defind a lot
of create method with different arguments.
5. Is ejbPassivate() invoked by the container when ejbRemove() is invoked?
a. true
b. false
I think the correct answer is b.
6. In EJBs, Which two callback methods can be used for synchronizing the bean's state with the database
a. ejbStore() and ejbLoad()
b. ejbActivate() and ejbPassivate()
c. ejbStore() and ejbPasivate()
d. ejbLoad() and ejbActivate()
The correct answer is b,but I think the correct answer should be a.

7. When does an Entity Bean transition from Pooled State to Ready state
a. when create() is invoked on EJBHome
b. when a find method is invoked on EJBHome
c. when a BEan is activated by the container
d. when a BEan is passivated by the container
one of the correct answers is b,but I think a find method don't bring the Entity Bean from Pooled State to Ready state .
8. Which of the following are true about load balancing methods?
a. DNS round robin method maps multiple IPs to a single host name
b. Hardware load balancing maps multiple IPs to a single host name
c. Hardware load balancing can potentially involve a single point of failure
d. DNS round robin is easy to setup than hardware load balancing.
e. DNS load balancing supports server affinity
f. Hardware load balancing supports server affinity
one of the correct answers is c,but I think there are at least two servers to implements the hardware load balancing ,why it will potentially involve a single point of failure .
 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Q1) u r right, while SSL handshake, any three things can happen, if client has Digital Cert, then server can verifiy or server has one, then client can verify or both has certificate, then, they can verify each other. think, C,D are mandatory.
Q2) i propose answers A and C
Q3) no answer, it depends in wht context this question has been asked
Q4)http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/CMP3.html
Q5) i guess u r right..
Q6) i would answer A)
Q7) answer shud be A, B , C
btw, where did u get this mock tests from? can u tell me
ashish
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Q 4) specification says Bean class should not define a constructor, because container uses a no-argument constructor to create bean instances, to create a pool when bean is deployed, if any constructor is defined, there should be a no-argument constructor to facilitate this activity. further as client does't instantiate bean class using a constructor, there is no use of defining a constructor.
Q 7) answer b is correct because, when finder method is called, a bean instance is pooled and populated with the data using the primary key. in this state its associated with the EJB remote stub, and ready to serve the client requests.
 
Jacky Doner
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks all.
 
Jacky Doner
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi ashish
I got the mock exam from the link suggestion of yahoo forum group.
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Question 7:
I think c is correct.
b is not correct because Remote object referrence is only returned to clients when a find method is invoked on EJBHome,so the state of beans aren't changed.
 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


1. Which of the following is not an optional step in establishing an SSL handshake?
a. Server side certificate validation by the client
b. client side certificate validation by the server
c. Generation of session keys for encryption and decryption
d. Selection of a suitable Cipher suite for encryption by the server and the client
The correct answer is b ,but I don't know why?I think all steps are needed



Since question is asking about not an optional step. so answer should be a, c, d IMO, since SSL has two authentication modes, mutual and server, so client side certificate authentication should be optional, please refer to "Sun certified enterprise achitect for j2ee study guide" chapter 10.
 
This one time, at bandcamp, I had relations with a tiny ad.
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic