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. 3 parts of XSL (eXtensible stylesheet language): Xpath for navigating XML documents - XSLT for ______ documents - XSL-FO for formatting XML documents






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






3. Converts string to lower case






4. Returns 2008






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






6. Returns today's date






7. Returns true if str2 appears anywhere inside str1






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






9. Returns logically rounded integer






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






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






12. Selects from the root node



13. Trims leading and trailing spaces






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






15. XPath is a major element in _______






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






17. Selects all the child nodes of the bookstore element






18. ________ allow more specific selections within the XPath






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






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






21. Returns length of current node string






22. XPath is a for defining parts of an XML document






23. XPath contains a library of _________






24. Selects parent of current node






25. Sibling nodes all have the same ______






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






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






28. Returns true if str1 contains str2






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






30. Returns everything after the first occurrence of str2






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






32. Returns day value from date passed






33. Returns complete date/time






34. Returns length of passed string






35. Returns true if str1 ends with str2






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






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






38. Returns month value out of date passed






39. Selects all title elements which have any attribute






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






41. Returns true if str1 starts with str2






42. Predicates work somewhat like _____________






43. Returns everything before the first occurrence of str2






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






45. Selects current node






46. Converts value to a string






47. Returns boolean true or boolean false






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






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






50. Selects all elements in the document