• 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

Question on HTTPS ?

 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello all,
While solving mocks on HTTPS one qestion come please help me to find the answer

5. What are two features of HTTPS? (Choose two.)A.It is secure. B.It is connectionless. C.It is connection-based. D.It is used for load balancing. E.It is used for remote object communications.
 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think the correct answers are
A and C
Please let me know if it is wrong
 
Ranch Hand
Posts: 311
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Apratim,

Originally posted by Apratim Khandalkar:
... please help me to find the answer


Don't you want to share YOUR thoughts first instead of just asking? Only by arguing yourself you will learn anythng.

Thomas
 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i am agree with Dave the correct answer are A and C
this part from RAMU MEDA notes

HTTPS
�Stateful / connection-based.
�Web protocol developed by Netscape and built into its browser that encrypts and decrypts user page requests as well as the pages that are returned by the Web server.
�HTTPS is really just the use of Netscape's Secure Socket Layer (SSL) as a sublayer under its regular HTTP application layer.
�HTTPS uses default port 443 instead of HTTP port 80 in its interactions with the lower layer, TCP/IP.
�SSL uses a 40 or 128-bit key size for the RC4 stream encryption algorithm, which is considered an adequate degree of encryption for commercial exchange.
�URL that starts with https://. When you click "Send," to send the page back to the catalog retailer, your browser's HTTPS layer will encrypt it. The acknowledgement you receive from the server will also travel in encrypted form, arrive with an https:// URL, and be decrypted for you by your browser's HTTPS sublayer
�HTTPS and SSL support the use of X.509 digital certificates from the server so that, if necessary, a user can authenticate the sender.
�SSL is an open, nonproprietary protocol that Netscape has proposed as a standard to the World Wide Consortium (W3C).
�HTTPS is not to be confused with SHTTP, a security-enhanced version of HTTP developed and proposed as a standard by EIT.
�Pros:
osecure � only �in-the-clear� at client / server
oallowed through firewalls (most of the time)
owidely supported / deployed
�Cons:
ocomputationally expensive � excluding dedicated hardware, HTTPS can only process 10% of the traffic HTTP can
olow performance compared to HTTP
oAdmin overhead � renewing certs, etc.
�Each party (client/server) may hold multiple SSL sessions.
�Each session may include multiple secure connections.

[ May 07, 2006: Message edited by: Usama Rashwan ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic