Test your basic knowledge |

Subject : it-skills
Instructions:
  • Answer 50 questions in 15 minutes.
  • If you are not ready to take this test, you can study here.
  • Match each statement with the correct term.
  • Don't refresh. All questions and answers are randomly picked and ordered every time you load a test.

This is a study tool. The 3 wrong answers for each question are randomly chosen from answers to other questions. So, you might find at times the answers obvious, but you will see it re-enforces your understanding as you take the test each time.
1. Transformation is actually accomplished by a _____________ like Saxon XSLT






2. Returns boolean true or boolean false






3. Returns false if true - true if false (negative logic)






4. Returns hour value from time passed






5. Inserts new itemX into the collection at the positionX - example insert-before("a", "b", "c"), 3, "z") returns (abzc)






6. Returns today's date






7. Compares strings, returns 0 if same, -1 if not same






8. Returns true if str1 contains str2






9. Sibling nodes all have the same ______






10. Returns month value out of date passed






11. Converts value to a string






12. XPath is a for defining parts of an XML document






13. Selects first two book elements from the children of books element






14. 3 parts of XSL (eXtensible stylesheet language): Xpath for navigating XML documents - XSLT for ______ documents - XSL-FO for formatting XML documents






15. Selects attributes






16. Selects all title AND price elements in the entire document






17. XPath is a major element in _______






18. Returns time right now






19. Replaces chars of str2 found in str1 with chars of str3






20. ________ allow more specific selections within the XPath






21. Returns everything after the first occurrence of str2






22. Returns 2008






23. Selects current node






24. Converts string number to numeric value






25. Selects all elements in the document






26. Returns length of current node string






27. +, -, *, div, =, !=, <, <=, >, >=, or, and, mod (modulus)






28. Returns absolute value (example abs(-2.5) returns 2.5






29. _______ have 3 primary relationships: parent - child - sibling






30. XPath uses ____________ to navigate in XML documents - selecting nodes or node-sets






31. Selects all title AND price elements of all book elements






32. Returns false or true






33. xpath function categories: numeric - string - boolea - date/time - ________






34. Returns timezone value from time passed






35. Selects from the root node



36. selects first book element from the children of books element






37. Concatenates strings together with separator between each string






38. Returns n-length substring from start position






39. XPath contains a library of _________






40. Removes item in the position - example: remove(("ab", "cd", "ef"), 1) returns ("cd", "ef")






41. 3 wildcards: ? matches any element node - @ matches any ___________ - node() matches any node of any kind






42. Trims leading and trailing spaces






43. Use a | to select more than one _____ (means AND)






44. Returns October or 10 ?






45. XML documents are treated as _________- so the root of the tree is called the document node or root node






46. Selects all book elements with an attribute isbn=






47. Selects all the child nodes of the bookstore element






48. Returns true if str1 starts with str2






49. Seven kinds of nodes in XPath: element - attribute - text - namespace - __________ - comment - document (root) nodes - a.k.a. DECANT-PI






50. Converts string to upper case