• 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
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

SCJA Exam Prep Questions

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am preparing questions for an SCJA exam study group for fellow employees. The following questions have been peer reviewed and they disagree with the answers. Please give me your opinions.

Q1: SMTP is used to do which of the following?

A. It is an XML-based registry used by businesses to make their services and general business descriptions available through the Internet.
B. It is a protocol used for information exchange within a decentralized and distributed environment.
C. It is a protocol used to send electronic mail.
D. It is an API used to build remote procedure calls in order to build web services and clients

C is correct. SMTP stands for Simple Mail Transfer Protocol. This protocol is used to send electronic mail.

A, B, and D are incorrect. A is incorrect because the answer is describing the Web Service Definition Language. B is incorrect because the answer is describing the Simple Object Access Protocol (SOAP). D is incorrect because the answer is describing the Java API for XML-based Remote Procedure Call (JAX-RPC).

Q2: 11. Which type of Enterprise JavaBean is persistent?

A. Entity bean
B. Session bean
C. Message-driven bean
D. Message-oriented bean

A is correct. Entity beans are persistent.

B, C, and D are incorrect. Session and message-driven beans are not persistent. There is no such thing as a message-oriented bean.


 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Good questions!

Q1: I would change answer B. One could argue that sending mail is a form of information exchange in a distributed and de-centralized environment.

Q2: I would clarify the meaning of “persistent”. A session bean is persistent across multiple web requests/responses, as is an entity bean. Only the entity bean might be persistent across multiple sessions. On the other hand, is the bean really persistent, or can it just be easily re-created from the underlying persistent (e.g. RDBMS) data?
 
Marshal
Posts: 80096
413
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the Ranch both of you

Whenever you set questions, you need to know there is a correct answer and that all other answers are incorrect. so I would take notice of the point about 1B.
 
I child proofed my house but they still get in. Distract them with this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic