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. every element and every attribute have just one _________






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






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






4. XSL is what we use to get from readable to _________






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






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






7. Returns minute value from time passed






8. Converts value to a string






9. Returns October or 10 ?






10. Returns everything before the first occurrence of str2






11. Selects current node






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






13. Returns true if str1 ends with str2






14. Selects all the child nodes of the bookstore element






15. Sibling nodes all have the same ______






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






17. XPath is a major element in _______






18. Selects all title elements which have any attribute






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






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






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






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






23. Returns true if str1 contains str2






24. Selects from the root node



25. Returns everything after the first occurrence of str2






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






27. XPath contains a library of _________






28. Concatenates strings together with separator between each string






29. Selects all elements in the document






30. Returns hour value from time passed






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






32. Returns logically rounded integer






33. Selects parent of current node






34. Returns second value from time passed






35. Predicates work somewhat like _____________






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






37. Returns complete date/time






38. Returns length of passed string






39. Converts string to lower case






40. Trims leading and trailing spaces






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






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






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






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






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






46. ________ allow more specific selections within the XPath






47. Returns day value from date passed






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






49. Returns true if str1 starts with str2






50. Returns false or true