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






2. Returns today's date






3. ________ allow more specific selections within the XPath






4. 3 parts of XSL (eXtensible stylesheet language): Xpath for navigating XML documents - XSLT for ______ documents - XSL-FO for formatting XML documents






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






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






7. Returns next lowest integer






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






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






10. Returns true if str1 contains str2






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






12. Returns boolean true or boolean false






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






14. Returns next highest integer






15. Predicates work somewhat like _____________






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






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






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






19. Returns true if str1 starts with str2






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






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






22. Returns month value out of date passed






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






24. Converts string to lower case






25. Selects from the root node



26. Returns 2008






27. Converts value to a string






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






29. Returns year value out of the date passed






30. Selects all title elements which have any attribute






31. XPath is a major element in _______






32. Returns October or 10 ?






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






34. Returns day value from date passed






35. Selects all book elements with an attribute isbn=






36. Converts string to upper case






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






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






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






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






41. Returns minute value from time passed






42. Converts string number to numeric value






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






44. Selects parent of current node






45. Returns everything after the first occurrence of str2






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






47. Selects all the child nodes of the bookstore element






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






49. Returns second value from time passed






50. Selects current node