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. XPath uses ____________ to navigate in XML documents - selecting nodes or node-sets






2. Returns timezone value from time passed






3. Selects from the root node



4. ________ allow more specific selections within the XPath






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






6. Returns complete date/time






7. Converts string to upper case






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






9. Selects parent of current node






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






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






12. Concatenates strings together with separator between each string






13. Returns second value from time passed






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






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






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






17. Converts string number to numeric value






18. Selects all elements in the document






19. Returns time right now






20. 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






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






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






23. Returns minute value from time passed






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






25. Returns n-length substring from start position






26. Trims leading and trailing spaces






27. Returns October or 10 ?






28. Returns month value out of date passed






29. Returns logically rounded integer






30. Returns everything before the first occurrence of str2






31. Returns true if str1 contains str2






32. Returns false or true






33. Returns length of current node string






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






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






36. Returns boolean true or boolean false






37. Converts string to lower case






38. Travels from current node to select nodes that match - wherever they are

Warning: Invalid argument supplied for foreach() in /var/www/html/basicversity.com/show_quiz.php on line 183


39. Selects current node






40. Returns true if str1 starts with str2






41. XPath contains a library of _________






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






43. Returns day value from date passed






44. Sibling nodes all have the same ______






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






46. Returns true if str1 ends with str2






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






48. Returns length of passed string






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






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