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 boolean true or boolean false






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






3. Returns complete date/time






4. Predicates work somewhat like _____________






5. Returns today's date






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






7. Returns true if str2 appears anywhere inside str1






8. Returns month value out of date passed






9. Returns true if str1 contains str2






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






11. Trims leading and trailing spaces






12. Selects from the root node



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






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






15. every element and every attribute have just one _________






16. Returns day value from date passed






17. Returns logically rounded integer






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






19. Returns timezone value from time passed






20. Converts string to upper case






21. Concatenates strings together with separator between each string






22. Returns time right now






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






24. Returns true if str1 ends with str2






25. Selects all the child nodes of the bookstore element






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






27. Returns 2008






28. Returns everything after the first occurrence of str2






29. XPath contains a library of _________






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






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






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






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






34. Returns length of current node string






35. Returns false or true






36. Selects all title elements which have any attribute






37. Returns hour value from time passed






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






39. Selects all elements in the document






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






41. XPath is a major element in _______






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






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






44. Returns October or 10 ?






45. Returns year value out of the date passed






46. Returns next lowest integer






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






48. Returns substring from start position to end of string






49. Returns true if str1 starts with str2






50. Converts value to a string