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. Travels from current node to select nodes that match - wherever they are


2. Selects all the child nodes of the bookstore element






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






4. Selects from the root node



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






6. Returns false or true






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






8. The XPath division operator not "/" cuz "/" is used in path expressions






9. Selects all book elements with a child element "price" with values greater than 35






10. Returns substring from start position to end of string






11. Returns length of passed string






12. XPath is a major element in _______






13. Returns hour value from time passed






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






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






16. Selects all title elements which have any attribute






17. Returns next highest integer






18. Returns second value from time passed






19. In str1, replaces all occurrences of str2 with str3






20. Returns today's date






21. Gets position(s) of target item(s) - example: index-of(15, 40, 25, 40, 10), 40) returns (2, 4)






22. Returns everything after the first occurrence of str2






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






24. Returns October or 10 ?






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






26. Converts string to lower case






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






28. Sibling nodes all have the same ______






29. Returns logically rounded integer






30. Selects all book elements with an attribute isbn=






31. Returns everything before the first occurrence of str2






32. Returns next lowest integer






33. Returns day value from date passed






34. Returns true if str2 appears anywhere inside str1






35. Selects attributes






36. Returns boolean true or boolean false






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






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






39. every element and every attribute have just one _________






40. Returns true if str1 contains str2






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






42. Returns minute value from time passed






43. Returns true if str1 ends with str2






44. Returns timezone value from time passed






45. Converts string to upper case






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






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






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






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






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