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. Returns hour value from time passed






2. every element and every attribute have just one _________






3. Converts string to lower case






4. Selects current node






5. Returns month value out of date passed






6. Returns minute value from time passed






7. Returns everything after the first occurrence of str2






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






9. Concatenates strings together with separator between each string






10. Selects attributes






11. Selects from the root node



12. Returns length of passed string






13. Converts string number to numeric value






14. Returns substring from start position to end of string






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






16. Returns today's date






17. A predicate is used by is used by adding square brackets [ ] to the end of a path or portion of a path - and adding ________ inside the brackets






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






19. Concatenates strings together (example concat('It",'is','cool') returns "Itiscool"






20. Predicates work somewhat like _____________






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






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






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






24. Selects all book elements with an attribute isbn=






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






26. Returns false or true






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






28. ________ allow more specific selections within the XPath






29. Element nodes may have zero - one - or more _________






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






31. XPath is a major element in _______






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






33. Returns all unique values in that collection - example: distinct-values(a, b, c, d, a, c) returns (a, b, c, d)






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






35. Transformation is actually accomplished by a _____________ like Saxon XSLT






36. Returns second value from time passed






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






38. Selects all title elements of the book element AND all price elements in the entire document






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






40. Selects last book element from the children of books element






41. Selects parent of current node






42. Returns year value out of the date passed






43. XPath contains a library of _________






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






45. Returns time right now






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






47. Returns length of current node string






48. Converts value to a string






49. Returns boolean true or boolean false






50. The process of taking raw XML - adding XSL - and outputting a document file of some type