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
Questions
Question 1 Multiple Choice (Single Answer)
Security
- Extend SSL for XML
- Encrypt specific elements or a complete XML document
- Encrypts XML using a public key that can only be decrypted with a secret private key
- B and C
Question 2 Multiple Choice (Single Answer)
Web Services
- New specification request in the community process
- A toolkit that allows developers to build, test and deploy Web Services
- Includes reference implementations for JavaServer Faces (JSF),JAXB,JAXP,JAXR,JAX-RPC,SAAJ and JSTL
- B and C
Question 3 Multiple Choice (Single Answer)
JAX-R
- To read and write to-from a UDDI registry using SOAP messages
- To read and write to-from an ebXML registry using SOAP messages
- A and B
- None of the above
Question 4 Multiple Choice (Single Answer)
JAX-RPC
- Can be used to generate server side and client side Java (Web Service) code from a WSDL
- Can be used to generate a WSDL from Java (Web Service) code
- Both A and B
- None of the above
Question 5 Multiple Choice (Single Answer)
Web Services
- True, because they both generate the same SOAP message
- False, because one is written in Java and the other in C# etc
- None of the above
- Both 1 and 2 are correct
Question 6 Multiple Choice (Single Answer)
SOAP
- An API to produce, consume and manipulate the XML structure for the SOAP message programmatically
- An API to for XML messaging
- An API for remote procedure calls
- All of the above
Question 7 Multiple Choice (Single Answer)
UDDI
- True, because it also allows business documents like schemas and WSDL to be stored in it
- False, because the the actual content is never stored in UDDI
- None of the above
- Both 1 and 2 are correct
Question 8 Multiple Choice (Single Answer)
XML
- Determine if two XML documents are logically equivalent
- Digitally encrypt an XML document
- Digitally sign an XML documents
- None of the above
Question 9 Multiple Choice (Single Answer)
WSDL
- TCP/IP or UDP port on the server
- Reprsents the actual service inv used
- Exposes a <service> using a specific protocol binding
- All of the above
Question 10 Multiple Choice (Single Answer)
JAXP
- A new XML parser implementation
- A standard XML parsing technique
- A standard XML API that can be used by developers with over an XML parser
- All of the above
Question 11 Multiple Choice (Single Answer)
What's the name of mark up language followed in Zk
- ZUML
- XML
- HTML
- XHTML
Question 12 Multiple Choice (Single Answer)
Which is not a Implict objects used in zk ?
- applicationScope
- event
- request
- execution
Question 13 True/False
All codes written in ZUML or Java file are executed in server side ?
- True
- False
Question 14 True/False
Can u write java code in ZUML file ?
- True
- False
Question 15 True/False
zk.xml is the configuration descriptor file is it optional ?
- True
- False
Question 16 Multiple Choice (Single Answer)
Choose the correct Order of life cycle of page loading in zk
- Page initial , Event processing , Component Creation , Rendering
- Page initial , Rendering , Component Creation , Event processing
- Page initial , Component Creation , Event processing , Rendering
- 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 ?
- Page initial
- Component Creation
- Event processing
- Rendering
Question 18 True/False
Does zk have the support for MVC architectural pattern ?
- True
- False
Question 19 Multiple Choice (Single Answer)
Which method is executed first on load of page in zk?
- onCreate
- doAfterCompose
- onClick
- service