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. Converts string to lower case






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






3. Sibling nodes all have the same ______






4. Returns month value out of date passed






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






6. Returns next highest integer






7. Returns timezone value from time passed






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






9. Returns time right now






10. Returns true if str1 ends with str2






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






12. Returns complete date/time






13. ________ allow more specific selections within the XPath






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






15. Selects current node






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






17. Concatenates strings together with separator between each string






18. Converts string to upper case






19. Selects all book elements with an attribute isbn=






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






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






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






23. Selects all title elements which have any attribute






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






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






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






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






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


29. Returns day value from date passed






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






31. XPath contains a library of _________






32. Returns year value out of the date passed






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






34. Returns true if str2 appears anywhere inside str1






35. Returns 2008






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






37. Converts value to a string






38. Converts string number to numeric value






39. Returns n-length substring from start position






40. Returns false or true






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






42. Selects from the root node



43. XPath is a major element in _______






44. Selects all the child nodes of the bookstore element






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






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






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






48. Returns length of passed string






49. Returns next lowest integer






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