ZK Framework and Web Services Quiz

Test your knowledge of ZK framework concepts including lifecycle, ZUML, and MVC, along with XML and web service technologies

19 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

Security

  1. Extend SSL for XML
  2. Encrypt specific elements or a complete XML document
  3. Encrypts XML using a public key that can only be decrypted with a secret private key
  4. B and C
Question 2 Multiple Choice (Single Answer)

Web Services

  1. New specification request in the community process
  2. A toolkit that allows developers to build, test and deploy Web Services
  3. Includes reference implementations for JavaServer Faces (JSF),JAXB,JAXP,JAXR,JAX-RPC,SAAJ and JSTL
  4. B and C
Question 3 Multiple Choice (Single Answer)

JAX-R

  1. To read and write to-from a UDDI registry using SOAP messages
  2. To read and write to-from an ebXML registry using SOAP messages
  3. A and B
  4. None of the above
Question 4 Multiple Choice (Single Answer)

JAX-RPC

  1. Can be used to generate server side and client side Java (Web Service) code from a WSDL
  2. Can be used to generate a WSDL from Java (Web Service) code
  3. Both A and B
  4. None of the above
Question 5 Multiple Choice (Single Answer)

Web Services

  1. True, because they both generate the same SOAP message
  2. False, because one is written in Java and the other in C# etc
  3. None of the above
  4. Both 1 and 2 are correct
Question 6 Multiple Choice (Single Answer)

SOAP

  1. An API to produce, consume and manipulate the XML structure for the SOAP message programmatically
  2. An API to for XML messaging
  3. An API for remote procedure calls
  4. All of the above
Question 7 Multiple Choice (Single Answer)

UDDI

  1. True, because it also allows business documents like schemas and WSDL to be stored in it
  2. False, because the the actual content is never stored in UDDI
  3. None of the above
  4. Both 1 and 2 are correct
Question 8 Multiple Choice (Single Answer)

XML

  1. Determine if two XML documents are logically equivalent
  2. Digitally encrypt an XML document
  3. Digitally sign an XML documents
  4. None of the above
Question 9 Multiple Choice (Single Answer)

WSDL

  1. TCP/IP or UDP port on the server
  2. Reprsents the actual service inv used
  3. Exposes a <service> using a specific protocol binding
  4. All of the above
Question 10 Multiple Choice (Single Answer)

JAXP

  1. A new XML parser implementation
  2. A standard XML parsing technique
  3. A standard XML API that can be used by developers with over an XML parser
  4. All of the above
Question 11 Multiple Choice (Single Answer)

What's the name of mark up language followed in Zk

  1. ZUML
  2. XML
  3. HTML
  4. XHTML
Question 12 Multiple Choice (Single Answer)

Which is not a Implict objects used in zk ?

  1. applicationScope
  2. event
  3. request
  4. execution
Question 13 True/False

All codes written in ZUML or Java file are executed in server side ?

  1. True
  2. False
Question 14 True/False

Can u write java code in ZUML file ?

  1. True
  2. False
Question 15 True/False

zk.xml is the configuration descriptor file is it optional ?

  1. True
  2. False
Question 16 Multiple Choice (Single Answer)

Choose the correct Order of life cycle of page loading in zk

  1. Page initial , Event processing , Component Creation , Rendering
  2. Page initial , Rendering , Component Creation , Event processing
  3. Page initial , Component Creation , Event processing , Rendering
  4. Page initial , Component Creation , Rendering , Event processing
Question 17 Multiple Choice (Single Answer)

Funtion Redraw() is called at which stage of in life cycle of page loading in zk ?

  1. Page initial
  2. Component Creation
  3. Event processing
  4. Rendering
Question 18 True/False

Does zk have the support for MVC architectural pattern ?

  1. True
  2. False
Question 19 Multiple Choice (Single Answer)

Which method is executed first on load of page in zk?

  1. onCreate
  2. doAfterCompose
  3. onClick
  4. service