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. Selects all title AND price elements in the entire document






2. Returns n-length substring from start position






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






4. Converts string to upper case






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






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






7. every element and every attribute have just one _________






8. Returns next lowest integer






9. Returns everything after the first occurrence of str2






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






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






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






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






14. Returns true if str2 appears anywhere inside str1






15. Returns second value from time passed






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






17. Returns month value out of date passed






18. Converts string to lower case






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






20. Trims leading and trailing spaces






21. Returns length of passed string






22. XPath is a major element in _______






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






24. Converts string number to numeric value






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






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






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






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






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






30. Returns October or 10 ?






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






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






33. Returns logically rounded integer






34. Returns day value from date passed






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






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






37. Returns year value out of the date passed






38. Concatenates strings together with separator between each string






39. Selects from the root node



40. Returns 2008






41. ________ allow more specific selections within the XPath






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






43. Sibling nodes all have the same ______






44. Selects all book elements with an attribute isbn=






45. Returns minute value from time passed






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 complete date/time






49. Returns substring from start position to end of string






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