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. XSL is what we use to get from readable to _________






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






3. Returns second value from time passed






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






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






6. Returns hour value from time passed






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






8. Predicates work somewhat like _____________






9. Returns 2008






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






11. XPath is a major element in _______






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






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






14. Returns boolean true or boolean false






15. Returns day value from date passed






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






17. Returns everything after the first occurrence of str2






18. Returns substring from start position to end of string






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






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






21. Returns time right now






22. Selects current node






23. Returns next lowest integer






24. Returns October or 10 ?






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






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






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






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






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






30. Sibling nodes all have the same ______






31. Trims leading and trailing spaces






32. Returns true if str1 starts with str2






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






34. Converts string to upper case






35. Selects all elements in the document






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






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






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






39. Selects all title elements which have any attribute






40. Returns next highest integer






41. Selects parent of current node






42. Converts value to a string






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






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






45. Returns complete date/time






46. Returns today's date






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






48. Returns timezone value from time passed






49. ________ allow more specific selections within the XPath






50. Selects attributes