• 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

SCEA questions help I

 
Ranch Hand
Posts: 220
  • 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 are non-functional requirements?

A. Scalability, availability, extensibility, managrability, security
B. Performance, reliability, elaboration, transition, documentation and security
C. Specification, elaboration, construction, transition, use case, and security.
D. Performance, availability, scalability, and security.
E. Reliability, availability, sacalibity, manageability, and security.
2. Which protocol normally has a trasaction service associated with it?

A. HTTP
B. HTTPS
C. JRMP
D. IIOP
3. You are developing an application to be used at a major bank. Security is crucial element and you have decided to use JAAS. The GUI will be based on the MVC framework and it uses swing. The pplication will connect people in the same office so that they can all securely review the same financial data. What protocol should you use to do this?
A. HTTP
B. IIOP
C. JRMP
D. HTTPS
4. WHich of the following scenarios are suitable for publish/subscribe messaging model?
A. It is used to receive news stories.
B. It is used for receiving sales forecasts.
C. It is used for sending stock prices to traders on the trading floor.
D. It is used to authorize a user ID and password.
5. Which of the following are advantages of asynchronous messaging architecture?

A. Better use of bandwidth.
B. Supports load balancing.
C. Provides sender with instant response
D. Scalability.
6. Which of the following are not featurees of synchronous messaging?
A. Both parties must be active to participate.
B. It is unaffected by increases in traffic volumn
C. Message must be acknowledged before proceeding to the next.
D. Message is queued until it is ready for proceeding.

The above questions is the difficult question to me.
Please help.
Thanks
Benson
 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1 - (dont know)
2 - D
3 - C
4 - A (not sure of B)
5 - D (not sure)
6 - D
 
Ranch Hand
Posts: 134
  • 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 are non-functional requirements?
A. Scalability, availability, extensibility, managrability, security
B. Performance, reliability, elaboration, transition, documentation and security
C. Specification, elaboration, construction, transition, use case, and security.
D. Performance, availability, scalability, and security.
E. Reliability, availability, sacalibity, manageability, and security.
=====================================================================
According to me the answer is D, Because Performance,availability, scalability, and security are architectural requirements. All the other
options are some how related to functional requirements.
 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
up
 
Ranch Hand
Posts: 317
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Sujatha:
1. Which of the following are non-functional requirements?

A. Scalability, availability, extensibility, managrability, security
B. Performance, reliability, elaboration, transition, documentation and security
C. Specification, elaboration, construction, transition, use case, and security.
D. Performance, availability, scalability, and security.
E. Reliability, availability, sacalibity, manageability, and security.

=====================================================================
According to me the answer is D, Because Performance,availability, scalability, and security are architectural requirements. All the other
options are some how related to functional requirements.




Isnt E also the correct option? There might be 2 correct options here, D & E.
 
Ranch Hand
Posts: 344
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Should the answer to Q1 be A, D and E?

Ray
 
Parag Doshi
Ranch Hand
Posts: 317
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Ramon Gill:
Should the answer to Q1 be A, D and E?

Ray




Yeah, Ray..I missed A.
 
Ramon Gill
Ranch Hand
Posts: 344
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
These are my thoughts on Q4 & Q5.

Q4. A and possibly B (If many people receive the sales forecasts).
Q5. A Because you don't have to wait for a response.
B Because you can have multiple MDB's feeding off one queue (i.e.
pooling).
D Scalable because of B above. You can increase the size of the
pool.

Ray
 
Ranch Hand
Posts: 84
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
According to me the following would be the answers :
1 : E
2 : C
3 : D
4 : A,B,C
5 : C
6 : B,D
 
Ramon Gill
Ranch Hand
Posts: 344
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Bobby,
I disagree with some of your answers for Q4 & Q5. You included 'C' in your answers to Q4. I discounted this as there is only one receiver of the message (the stock floor), so is not publish/subscribe. For Q5, 'C' is an advantage of 'synchronous', not 'asynchronous'.

Ray
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic